aboutsummaryrefslogtreecommitdiff
path: root/src/statistics
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2010-06-11 22:01:30 +0000
committerChristian Grothoff <christian@grothoff.org>2010-06-11 22:01:30 +0000
commit4094407e04c6cfc3b944301467f1249cdc59954c (patch)
tree10487aa0d06148e38369d8e715d915e977f914d7 /src/statistics
parentbe537ba3666dee493c43afc5c011c6d1d9b6a23a (diff)
downloadgnunet-4094407e04c6cfc3b944301467f1249cdc59954c.tar.gz
gnunet-4094407e04c6cfc3b944301467f1249cdc59954c.zip
better type
Diffstat (limited to 'src/statistics')
-rw-r--r--src/statistics/statistics_api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/statistics/statistics_api.c b/src/statistics/statistics_api.c
index 523b9eb5f..4ba459c46 100644
--- a/src/statistics/statistics_api.c
+++ b/src/statistics/statistics_api.c
@@ -817,7 +817,7 @@ GNUNET_STATISTICS_update (struct GNUNET_STATISTICS_Handle *handle,
817 return; 817 return;
818 GNUNET_assert (GNUNET_NO == handle->do_destroy); 818 GNUNET_assert (GNUNET_NO == handle->do_destroy);
819 add_setter_action (handle, name, make_persistent, 819 add_setter_action (handle, name, make_persistent,
820 (unsigned long long) delta, ACTION_UPDATE); 820 (uint64_t) delta, ACTION_UPDATE);
821} 821}
822 822
823 823