summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2013-04-03 09:36:37 -0400
committerNick Mathewson <nickm@torproject.org>2013-04-03 09:36:37 -0400
commit33b7083f26e30304f6c9296e3cb7205f6bda0c95 (patch)
treeffb3c1b4519962c0fa8ea57b477a596e2644993c /src
parent5efe5067670960384f0e4a42b5073e86fe3824a7 (diff)
downloadtor-33b7083f26e30304f6c9296e3cb7205f6bda0c95.tar.gz
tor-33b7083f26e30304f6c9296e3cb7205f6bda0c95.zip
Fix a wide line
Diffstat (limited to 'src')
-rw-r--r--src/or/circuitbuild.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c
index df56877646..31242f6c14 100644
--- a/src/or/circuitbuild.c
+++ b/src/or/circuitbuild.c
@@ -2555,9 +2555,9 @@ pathbias_scale_use_rates(entry_guard_t *guard)
guard->use_attempts += opened_attempts;
log_info(LD_CIRC,
- "Scaled pathbias use counts to %f/%f (%d open) for guard %s ($%s)",
- guard->use_successes, guard->use_attempts, opened_attempts,
- guard->nickname, hex_str(guard->identity, DIGEST_LEN));
+ "Scaled pathbias use counts to %f/%f (%d open) for guard %s ($%s)",
+ guard->use_successes, guard->use_attempts, opened_attempts,
+ guard->nickname, hex_str(guard->identity, DIGEST_LEN));
/* Have the counts just become invalid by this scaling attempt? */
if (counts_are_sane && guard->use_attempts < guard->use_successes) {