Skip to content

Commit

Permalink
Formating of mux.c is fixed to be aligned with the rest of the project.
Browse files Browse the repository at this point in the history
Signed-off-by: Dragan Jovanović <[email protected]>
  • Loading branch information
draganjovanovich committed Aug 15, 2022
1 parent 548a491 commit aa40060
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mux.c
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ char *answerback;

static void write_receive_buf(const unsigned char *buf, int len)
{
if (!len) return;
if (!len) return;
if (timestamps) {
if (buf[len - 1] == '\n' || buf[len -1] == '\r') {
new_line = true;
Expand All @@ -243,7 +243,7 @@ static void write_receive_buf(const unsigned char *buf, int len)
} else {
write(STDOUT_FILENO, buf, len);
}
if (logfd >= 0) write(logfd, buf, len);
if (logfd >= 0) write(logfd, buf, len);
}

static int ios_printf(struct ios_ops *ios, const char *format, ...)
Expand Down

0 comments on commit aa40060

Please sign in to comment.