aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/stats/functions.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2008-06-08 03:59:54 +0000
committerChristian Grothoff <christian@grothoff.org>2008-06-08 03:59:54 +0000
commit66c000cea09790c8ccff0b8b0be0517ec7a5ed49 (patch)
tree005c19f30f8dce6afb642bdfb71e7637e7adb9c4 /src/plugins/stats/functions.h
parent7d07c002f9e62e8db64458a3f05db7620eb91cd2 (diff)
downloadgnunet-gtk-66c000cea09790c8ccff0b8b0be0517ec7a5ed49.tar.gz
gnunet-gtk-66c000cea09790c8ccff0b8b0be0517ec7a5ed49.zip
fixing warnings with respect to signed/unsigned
Diffstat (limited to 'src/plugins/stats/functions.h')
-rw-r--r--src/plugins/stats/functions.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/stats/functions.h b/src/plugins/stats/functions.h
index 6d05ce26..053531a9 100644
--- a/src/plugins/stats/functions.h
+++ b/src/plugins/stats/functions.h
@@ -46,7 +46,7 @@ typedef struct SE_
46 UpdateData getData; 46 UpdateData getData;
47 void *get_closure; 47 void *get_closure;
48 unsigned int count; 48 unsigned int count;
49 int fill; /* fill first "fill" entries */ 49 unsigned int fill; /* fill first "fill" entries */
50} StatEntry; 50} StatEntry;
51 51
52extern StatEntry stats[]; 52extern StatEntry stats[];