aboutsummaryrefslogtreecommitdiff
path: root/src/util/test_container_slist.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2009-10-03 19:11:23 +0000
committerChristian Grothoff <christian@grothoff.org>2009-10-03 19:11:23 +0000
commitc1f8b8adfa5205d6701aaf92d9cba7303e5b1d0a (patch)
tree817b445ecc42010b62fff70c08daee45a8407b4e /src/util/test_container_slist.c
parentbaac4b5251625c616da4b8369fb1ac2581d48076 (diff)
downloadgnunet-c1f8b8adfa5205d6701aaf92d9cba7303e5b1d0a.tar.gz
gnunet-c1f8b8adfa5205d6701aaf92d9cba7303e5b1d0a.zip
fix types
Diffstat (limited to 'src/util/test_container_slist.c')
-rw-r--r--src/util/test_container_slist.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/util/test_container_slist.c b/src/util/test_container_slist.c
index 0c4525c45..7d31eff2e 100644
--- a/src/util/test_container_slist.c
+++ b/src/util/test_container_slist.c
@@ -36,7 +36,9 @@ main (int argc, char *argv[])
36{ 36{
37 struct GNUNET_CONTAINER_SList *l; 37 struct GNUNET_CONTAINER_SList *l;
38 struct GNUNET_CONTAINER_SList_Iterator *it; 38 struct GNUNET_CONTAINER_SList_Iterator *it;
39 unsigned int i, j, s; 39 unsigned int i;
40 unsigned int j;
41 size_t s;
40 const void *p; 42 const void *p;
41 43
42 GNUNET_log_setup ("test-container-slist", "WARNING", NULL); 44 GNUNET_log_setup ("test-container-slist", "WARNING", NULL);