aboutsummaryrefslogtreecommitdiff
path: root/src/statistics
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2009-07-03 06:25:09 +0000
committerChristian Grothoff <christian@grothoff.org>2009-07-03 06:25:09 +0000
commit4a86e0b4faea9dc3e8bd1393ff0561fcf03ca785 (patch)
tree8417815af297e0967485cd427e0f0acf7daf91a4 /src/statistics
parent3e719ecc0f2252bfb01ce6ee057e6d63dd4b7037 (diff)
downloadgnunet-4a86e0b4faea9dc3e8bd1393ff0561fcf03ca785.tar.gz
gnunet-4a86e0b4faea9dc3e8bd1393ff0561fcf03ca785.zip
dsfixes
Diffstat (limited to 'src/statistics')
-rw-r--r--src/statistics/statistics_api.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/statistics/statistics_api.c b/src/statistics/statistics_api.c
index 13a091955..251d303a8 100644
--- a/src/statistics/statistics_api.c
+++ b/src/statistics/statistics_api.c
@@ -489,6 +489,10 @@ transmit_action (void *cls, size_t size, void *buf)
489 case ACTION_UPDATE: 489 case ACTION_UPDATE:
490 ret = transmit_set (handle, size, buf); 490 ret = transmit_set (handle, size, buf);
491 break; 491 break;
492 default:
493 ret = 0;
494 GNUNET_break (0);
495 break;
492 } 496 }
493 return ret; 497 return ret;
494} 498}