commit 83a11f8a767f55e1f2cc6b4632e0fdec6f89f945 Author: Guinness guinness@crans.org Date: Thu Sep 9 13:59:33 2021 +0200
Fix the line length in the patch --- src/core/or/channel.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/src/core/or/channel.c b/src/core/or/channel.c index cf9edef902..94c6a8121c 100644 --- a/src/core/or/channel.c +++ b/src/core/or/channel.c @@ -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 "
tor-commits@lists.torproject.org