X-Git-Url: https://git.octo.it/?a=blobdiff_plain;ds=sidebyside;f=src%2Futils_heap.c;h=086649a1f48582d58cbe995fbce2a5aa3709f5ec;hb=82882bce5d2d0f48912492223507b8a42b0fb1a9;hp=1ecd07e82abb8dd66ed787413c0b2d572192eb75;hpb=9ce08d6e5e67d89e29a21883bdca5b79d1f908a9;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 : */