mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
Fix the line length in the patch
This commit is contained in:
parent
399025dc5f
commit
83a11f8a76
@ -2643,7 +2643,8 @@ channel_dump_statistics, (channel_t *chan, int severity))
|
||||
}
|
||||
if (chan->timestamp_recv == 0) {
|
||||
tor_log(severity, LD_GENERAL,
|
||||
" * Channel %"PRIu64 " never received a cell", (chan->global_identifier));
|
||||
" * Channel %"PRIu64 " never received a cell",
|
||||
(chan->global_identifier));
|
||||
} else {
|
||||
tor_log(severity, LD_GENERAL,
|
||||
" * Channel %"PRIu64 " last received a cell "
|
||||
@ -2654,7 +2655,8 @@ channel_dump_statistics, (channel_t *chan, int severity))
|
||||
}
|
||||
if (chan->timestamp_xmit == 0) {
|
||||
tor_log(severity, LD_GENERAL,
|
||||
" * Channel %"PRIu64 " never transmitted a cell",(chan->global_identifier));
|
||||
" * Channel %"PRIu64 " never transmitted a cell",
|
||||
(chan->global_identifier));
|
||||
} else {
|
||||
tor_log(severity, LD_GENERAL,
|
||||
" * Channel %"PRIu64 " last transmitted a cell "
|
||||
|
Loading…
Reference in New Issue
Block a user