diff options
author | Nick Mathewson <nickm@torproject.org> | 2017-03-07 10:48:03 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-03-16 14:38:28 -0400 |
commit | 97620cf18ff510deec07cd98b46cfa7a3f859900 (patch) | |
tree | 75877ab56cb6fdc21700b60faa8ff6617698ac5e /src | |
parent | 05901f2c6d5e2c201158b8c841eec002c758ef7e (diff) | |
download | tor-97620cf18ff510deec07cd98b46cfa7a3f859900.tar.gz tor-97620cf18ff510deec07cd98b46cfa7a3f859900.zip |
No need to end a log message with newline.
Diffstat (limited to 'src')
-rw-r--r-- | src/or/consdiff.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/consdiff.c b/src/or/consdiff.c index 52e1eb98a1..65e15f79ee 100644 --- a/src/or/consdiff.c +++ b/src/or/consdiff.c @@ -954,7 +954,7 @@ consdiff_apply_diff(smartlist_t *cons1, smartlist_t *diff, digests1->d[DIGEST_SHA256], DIGEST256_LEN); base16_encode(e_hex_digest1, HEX_DIGEST256_LEN+1, e_cons1_hash, DIGEST256_LEN); - log_warn(LD_CONSDIFF, "Expected: %s Found: %s\n", + log_warn(LD_CONSDIFF, "Expected: %s; found: %s", hex_digest1, e_hex_digest1); goto error_cleanup; } @@ -999,7 +999,7 @@ consdiff_apply_diff(smartlist_t *cons1, smartlist_t *diff, cons2_digests.d[DIGEST_SHA256], DIGEST256_LEN); base16_encode(e_hex_digest2, HEX_DIGEST256_LEN+1, e_cons2_hash, DIGEST256_LEN); - log_warn(LD_CONSDIFF, "Expected: %s Found: %s\n", + log_warn(LD_CONSDIFF, "Expected: %s; found: %s", hex_digest2, e_hex_digest2); goto error_cleanup; } |