Code

src/daemon/utils_tail_match.c: Use match_value_reset().
[collectd.git] / src / daemon / utils_heap.c
index ae502c90ea7736a50e65972fc1a1917f7fa833c5..8637581149c890f45577cabb1e902099f52fb82b 100644 (file)
@@ -25,7 +25,6 @@
  **/
 
 #include <stdlib.h>
-#include <string.h>
 #include <errno.h>
 #include <assert.h>
 #include <pthread.h>
@@ -173,7 +172,7 @@ int c_heap_insert (c_heap_t *h, void *ptr)
 
   /* Reorganize the heap from bottom up. */
   reheap (h, /* parent of this node = */ (index - 1) / 2, DIR_UP);
-  
+
   pthread_mutex_unlock (&h->lock);
   return (0);
 } /* int c_heap_insert */