X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Futils_heap.h;h=64280064f4757ababad457c7f3337430e3ca6a7b;hb=491712ab7dd36eb58fba23942f5edf4b76b50361;hp=dd0f4866ad44984ce38bff275c8c9718346d5888;hpb=a2bf02b4f5bf4a22395b57bba6715dada3859612;p=collectd.git diff --git a/src/utils_heap.h b/src/utils_heap.h index dd0f4866..64280064 100644 --- a/src/utils_heap.h +++ b/src/utils_heap.h @@ -78,7 +78,7 @@ int c_heap_insert (c_heap_t *h, void *ptr); /* * NAME - * c_head_get_root + * c_heap_get_root * * DESCRIPTION * Removes the value at the root of the heap and returns both, key and value. @@ -90,7 +90,7 @@ int c_heap_insert (c_heap_t *h, void *ptr); * The pointer passed to `c_heap_insert' or NULL if there are no more * elements in the heap (or an error occurred). */ -void *c_head_get_root (c_heap_t *h); +void *c_heap_get_root (c_heap_t *h); #endif /* UTILS_HEAP_H */ /* vim: set sw=2 sts=2 et : */