aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/setu/gnunet-service-setu.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/setu/gnunet-service-setu.c b/src/setu/gnunet-service-setu.c
index b01b897d8..38027983a 100644
--- a/src/setu/gnunet-service-setu.c
+++ b/src/setu/gnunet-service-setu.c
@@ -2146,11 +2146,15 @@ send_ibf (struct Operation *op,
2146 2146
2147 LOG (GNUNET_ERROR_TYPE_DEBUG, 2147 LOG (GNUNET_ERROR_TYPE_DEBUG,
2148 "sending ibf of size %u\n", 2148 "sending ibf of size %u\n",
2149 1 << ibf_size); 2149 (unsigned int) ibf_size);
2150 2150
2151 { 2151 {
2152 char name[64]; 2152 char name[64];
2153 GNUNET_snprintf (name, sizeof(name), "# sent IBF (order %u)", ibf_size); 2153
2154 GNUNET_snprintf (name,
2155 sizeof(name),
2156 "# sent IBF (order %u)",
2157 ibf_size);
2154 GNUNET_STATISTICS_update (_GSS_statistics, name, 1, GNUNET_NO); 2158 GNUNET_STATISTICS_update (_GSS_statistics, name, 1, GNUNET_NO);
2155 } 2159 }
2156 2160