diff options
author | Nick Mathewson <nickm@torproject.org> | 2014-11-12 13:42:01 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2014-11-12 13:42:01 -0500 |
commit | 4ac5175109b14f8fafca3374ab5ca63968ab2cca (patch) | |
tree | 2d5b009f443942de02807a43d796ae2a4351488a /src/test/test_status.c | |
parent | a3dafd3f58bb3122b9de919e931c02b5e12373b2 (diff) | |
download | tor-4ac5175109b14f8fafca3374ab5ca63968ab2cca.tar.gz tor-4ac5175109b14f8fafca3374ab5ca63968ab2cca.zip |
Fix wide lines (from 13172)
Diffstat (limited to 'src/test/test_status.c')
-rw-r--r-- | src/test/test_status.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/test/test_status.c b/src/test/test_status.c index dd825f2753..aa71aa6a9b 100644 --- a/src/test/test_status.c +++ b/src/test/test_status.c @@ -435,8 +435,8 @@ NS(logv)(int severity, log_domain_mask_t domain, case 2: tt_int_op(severity, OP_EQ, LOG_NOTICE); tt_int_op(domain, OP_EQ, LD_HEARTBEAT); - tt_ptr_op( - strstr(funcname, "rep_hist_log_circuit_handshake_stats"), OP_NE, NULL); + tt_ptr_op(strstr(funcname, "rep_hist_log_circuit_handshake_stats"), + OP_NE, NULL); tt_ptr_op(suffix, OP_EQ, NULL); tt_str_op(format, OP_EQ, "Circuit handshake stats since last time: %d/%d TAP, %d/%d NTor."); @@ -737,7 +737,8 @@ NS(logv)(int severity, log_domain_mask_t domain, tt_str_op(va_arg(ap, char *), OP_EQ, "0 kB"); /* acc_rcvd */ tt_str_op(va_arg(ap, char *), OP_EQ, "0 kB"); /* acc_max */ /* format_local_iso_time uses local tz, just check mins and secs. */ - tt_ptr_op(strstr(va_arg(ap, char *), ":01:00"), OP_NE, NULL); /* end_buf */ + tt_ptr_op(strstr(va_arg(ap, char *), ":01:00"), + OP_NE, NULL); /* end_buf */ tt_str_op(va_arg(ap, char *), OP_EQ, "0:01 hours"); /* remaining */ break; default: |