aboutsummaryrefslogtreecommitdiff
path: root/src/statistics/gnunet-service-statistics.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2010-08-15 14:05:47 +0000
committerChristian Grothoff <christian@grothoff.org>2010-08-15 14:05:47 +0000
commit33ecaab482926fb0ae1cea3590cb36129732b4ef (patch)
treecd0813225c739442880a9ee0195f42ab51af6510 /src/statistics/gnunet-service-statistics.c
parente108308084cdbcb4ba911fff41dfd18c65f0996c (diff)
downloadgnunet-33ecaab482926fb0ae1cea3590cb36129732b4ef.tar.gz
gnunet-33ecaab482926fb0ae1cea3590cb36129732b4ef.zip
strict check
Diffstat (limited to 'src/statistics/gnunet-service-statistics.c')
-rw-r--r--src/statistics/gnunet-service-statistics.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/statistics/gnunet-service-statistics.c b/src/statistics/gnunet-service-statistics.c
index 823dc419e..91c62a64b 100644
--- a/src/statistics/gnunet-service-statistics.c
+++ b/src/statistics/gnunet-service-statistics.c
@@ -329,8 +329,7 @@ make_client_entry (struct GNUNET_SERVER_Client *client)
329{ 329{
330 struct ClientEntry *ce; 330 struct ClientEntry *ce;
331 331
332 if (client == NULL) 332 GNUNET_assert (client != NULL);
333 return NULL;
334 ce = client_head; 333 ce = client_head;
335 while (ce != NULL) 334 while (ce != NULL)
336 { 335 {