X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Futils_heap.c;h=086649a1f48582d58cbe995fbce2a5aa3709f5ec;hb=a55e821f4a497ca57161a023206cee5f21f3aed2;hp=1ecd07e82abb8dd66ed787413c0b2d572192eb75;hpb=edb6c3544ab2755c85e8931cbef960e9cedd48cf;p=collectd.git diff --git a/src/utils_heap.c b/src/utils_heap.c index 1ecd07e8..086649a1 100644 --- a/src/utils_heap.c +++ b/src/utils_heap.c @@ -172,7 +172,7 @@ int c_heap_insert (c_heap_t *h, void *ptr) return (0); } /* int c_heap_insert */ -void *c_head_get_root (c_heap_t *h) +void *c_heap_get_root (c_heap_t *h) { void *ret = NULL; @@ -218,6 +218,6 @@ void *c_head_get_root (c_heap_t *h) pthread_mutex_unlock (&h->lock); return (ret); -} /* void *c_head_get_root */ +} /* void *c_heap_get_root */ /* vim: set sw=2 sts=2 et fdm=marker : */