Skip to content

Commit

Permalink
tport: fix missing new line at the end of messages when they are prin…
Browse files Browse the repository at this point in the history
…ted to the log
  • Loading branch information
andywolk authored Feb 8, 2022
1 parent 1607ade commit 8ff7e35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libsofia-sip-ua/tport/tport_logging.c
Original file line number Diff line number Diff line change
Expand Up @@ -901,6 +901,6 @@ void tport_log_msg(tport_t *self, msg_t *msg,
buffer_pos = buffer_size - 1;
}
buffer[buffer_pos] = '\0';
su_log("%s", buffer);
su_log("%s\n", buffer);
free(buffer);
}

0 comments on commit 8ff7e35

Please sign in to comment.