]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Fix the line length in the patch
authorGuinness <guinness@crans.org>
Thu, 9 Sep 2021 11:59:33 +0000 (13:59 +0200)
committerGuinness <guinness@crans.org>
Thu, 9 Sep 2021 11:59:33 +0000 (13:59 +0200)
src/core/or/channel.c

index cf9edef902bcfe08b42a4ab8621c628e5933c023..94c6a8121c5a2815ae1f65ba07f8abbf98cfa26e 100644 (file)
@@ -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 "