X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Futils_heap.c;h=086649a1f48582d58cbe995fbce2a5aa3709f5ec;hb=6a5ea214ee92faad825f927e54c64575432cb328;hp=1ecd07e82abb8dd66ed787413c0b2d572192eb75;hpb=307459f5a1d79ee373cf59c7c8a0824d325c43e3;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 : */