From 39b3f63d2bf4a8f5e4b6ecf601cb00d3ff0190b7 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Fri, 13 Dec 2013 01:12:36 +0100 Subject: libcnary: silence two compiler warnings --- libcnary/node.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libcnary') diff --git a/libcnary/node.c b/libcnary/node.c index 0a8f414..46532aa 100644 --- a/libcnary/node.c +++ b/libcnary/node.c @@ -121,7 +121,7 @@ int node_insert(node_t* parent, unsigned int index, node_t* child) } void node_debug(node_t* node) { - int i = 0; + unsigned int i = 0; node_t* current = NULL; node_iterator_t* iter = NULL; for(i = 0; i < node->depth; i++) { @@ -155,7 +155,7 @@ unsigned int node_n_children(struct node_t* node) node_t* node_nth_child(struct node_t* node, unsigned int n) { if (!node || !node->children || !node->children->begin) return NULL; - int index = 0; + unsigned int index = 0; int found = 0; node_t *ch; for (ch = node_first_child(node); ch; ch = node_next_sibling(ch)) { -- cgit v1.1-32-gdbae