Skip to content

Commit

Permalink
Merge pull request freeswitch#110 from freeswitch/newline
Browse files Browse the repository at this point in the history
tport: fix missing new line at the end of messages when they are printed to the log
  • Loading branch information
briankwest authored Feb 8, 2022
2 parents 1607ade + 8ff7e35 commit d022b09
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 d022b09

Please sign in to comment.