From 83d0dccb750279dcd0e3ec1635b4952d2e42cb1e Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Wed, 19 Oct 2011 13:32:38 +0000 Subject: [PATCH] Fix stat --- src/fs/gnunet-service-fs_pr.c | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/src/fs/gnunet-service-fs_pr.c b/src/fs/gnunet-service-fs_pr.c index 953983d37..9a8a3f23a 100644 --- a/src/fs/gnunet-service-fs_pr.c +++ b/src/fs/gnunet-service-fs_pr.c @@ -1219,13 +1219,11 @@ process_local_reply (void *cls, const GNUNET_HashCode * key, size_t size, GNUNET_TIME_UNIT_FOREVER_REL, &process_local_reply, pr); if (NULL != pr->qe) - { - GNUNET_STATISTICS_update (GSF_stats, - gettext_noop - ("# Datastore lookups concluded (error queueing)"), - 1, GNUNET_NO); - return; /* we're done */ - } + return; /* we're done */ + GNUNET_STATISTICS_update (GSF_stats, + gettext_noop + ("# Datastore lookups concluded (error queueing)"), + 1, GNUNET_NO); goto check_error_and_continue; } old_rf = pr->public_data.results_found; -- 2.25.1