From faa4f420de579ca288b8f3134ab76c7e8cd8977d Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Fri, 23 Sep 2005 17:02:50 +0000 Subject: [PATCH] Remove extraneous space on read-history lines. svn:r5123 --- src/or/rephist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/or/rephist.c b/src/or/rephist.c index 9742501352..af3cbcc868 100644 --- a/src/or/rephist.c +++ b/src/or/rephist.c @@ -598,7 +598,7 @@ rep_hist_get_bandwidth_lines(void) tor_assert(b); format_iso_time(t, b->next_period-NUM_SECS_BW_SUM_INTERVAL); tor_snprintf(cp, len-(cp-buf), "opt %s %s (%d s) ", - r ? "read-history " : "write-history", t, + r ? "read-history" : "write-history", t, NUM_SECS_BW_SUM_INTERVAL); cp += strlen(cp);