diff options
author | Christian Grothoff <christian@grothoff.org> | 2011-08-16 16:03:20 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2011-08-16 16:03:20 +0000 |
commit | 16a6919a9f98ee9fa1fee9dd262906c321004a19 (patch) | |
tree | e09d4fe5191dc329b3e1b667f2914f8313bcba59 /src/datacache/perf_datacache.c | |
parent | 4d7904c62bb867c44e90b8e9f7cdbb4b283abc44 (diff) |
even nicer indentation, thanks to LRN's indent patch
Diffstat (limited to 'src/datacache/perf_datacache.c')
-rw-r--r-- | src/datacache/perf_datacache.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/datacache/perf_datacache.c b/src/datacache/perf_datacache.c index a5dc023620..131ca4b82d 100644 --- a/src/datacache/perf_datacache.c +++ b/src/datacache/perf_datacache.c @@ -91,8 +91,8 @@ run (void *cls, char *const *args, const char *cfgfile, } fprintf (stderr, "\n"); fprintf (stdout, "Stored %u items in %llums\n", ITERATIONS, - (unsigned long long) GNUNET_TIME_absolute_get_duration (start). - rel_value); + (unsigned long long) + GNUNET_TIME_absolute_get_duration (start).rel_value); GNUNET_snprintf (gstr, sizeof (gstr), "DATACACHE-%s", plugin_name); GAUGER (gstr, "Time to PUT item in datacache", GNUNET_TIME_absolute_get_duration (start).rel_value / ITERATIONS, @@ -111,8 +111,9 @@ run (void *cls, char *const *args, const char *cfgfile, fprintf (stdout, "Found %u/%u items in %llums (%u were deleted during storage processing)\n", found, ITERATIONS, - (unsigned long long) GNUNET_TIME_absolute_get_duration (start). - rel_value, ITERATIONS - found); + (unsigned long long) + GNUNET_TIME_absolute_get_duration (start).rel_value, + ITERATIONS - found); if (found > 0) GAUGER (gstr, "Time to GET item from datacache", GNUNET_TIME_absolute_get_duration (start).rel_value / found, |