X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fdaemon%2Futils_avltree.h;h=43e94cfb64dd359dddb5db258dcdeb379e28a060;hb=4979d8dcd6f097eb8fd4661086e28accd31ff905;hp=1e0f271fc187ce4e35f8bb015dbedc4bbe947448;hpb=778a6720a300cf549f5bcca9c22a3ef09d97f16f;p=collectd.git diff --git a/src/daemon/utils_avltree.h b/src/daemon/utils_avltree.h index 1e0f271f..43e94cfb 100644 --- a/src/daemon/utils_avltree.h +++ b/src/daemon/utils_avltree.h @@ -42,7 +42,7 @@ typedef struct c_avl_iterator_s c_avl_iterator_t; * * PARAMETERS * `compare' The function-pointer `compare' is used to compare two keys. It - * has to return less than zero if it's first argument is smaller + * has to return less than zero if its first argument is smaller * then the second argument, more than zero if the first argument * is bigger than the second argument and zero if they are equal. * If your keys are char-pointers, you can use the `strcmp' @@ -131,7 +131,7 @@ int c_avl_get (c_avl_tree_t *t, const void *key, void **value); * c_avl_pick * * DESCRIPTION - * Remove a (pseudo-)random element from the tree and return it's `key' and + * Remove a (pseudo-)random element from the tree and return its `key' and * `value'. Entries are not returned in any particular order. This function * is intended for cache-flushes that don't care about the order but simply * want to remove all elements, one at a time.