]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Fix a wide line
authorNick Mathewson <nickm@torproject.org>
Wed, 3 Apr 2013 13:36:37 +0000 (09:36 -0400)
committerNick Mathewson <nickm@torproject.org>
Wed, 3 Apr 2013 13:36:37 +0000 (09:36 -0400)
src/or/circuitbuild.c

index df56877646fb565856f6408b0ac2d35e9d3a3416..31242f6c14f94b98c2c43eb41e0ba55bbc0ca002 100644 (file)
@@ -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) {