aboutsummaryrefslogtreecommitdiff
path: root/src/core/or/channel.c
diff options
context:
space:
mode:
authorGuinness <guinness@crans.org>2021-09-09 13:59:33 +0200
committerGuinness <guinness@crans.org>2021-09-09 13:59:33 +0200
commit83a11f8a767f55e1f2cc6b4632e0fdec6f89f945 (patch)
tree5771552172d07c305657a4a185635e93022eb270 /src/core/or/channel.c
parent399025dc5f433711a48c0d3b7bdfc33c980b5c23 (diff)
downloadtor-83a11f8a767f55e1f2cc6b4632e0fdec6f89f945.tar.gz
tor-83a11f8a767f55e1f2cc6b4632e0fdec6f89f945.zip
Fix the line length in the patch
Diffstat (limited to 'src/core/or/channel.c')
-rw-r--r--src/core/or/channel.c6
1 files 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 "