Small formatting changes

This commit is contained in:
James Booth
2012-02-10 00:28:39 +00:00
parent 2137ffa25a
commit 4a2ff76059
6 changed files with 25 additions and 5 deletions

View File

@@ -86,7 +86,7 @@ void show_incomming_msg(char *from, char *message)
char tstmp[80];
get_time(tstmp);
sprintf(line, " [%s] %s: %s\n", tstmp, short_from, message);
sprintf(line, " [%s] <%s> %s\n", tstmp, short_from, message);
// find the chat window for sender
int i;
@@ -136,7 +136,7 @@ void show_outgoing_msg(char *from, char *to, char *message)
char line[100];
char tstmp[80];
get_time(tstmp);
sprintf(line, " [%s] %s: %s\n", tstmp, from, message);
sprintf(line, " [%s] <%s> %s\n", tstmp, from, message);
// find the chat window for recipient
int i;