summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJfreegman <Jfreegman@gmail.com>2013-08-05 18:38:55 -0400
committerJfreegman <Jfreegman@gmail.com>2013-08-05 18:38:55 -0400
commit663764e046fa7f83d03138e370ba074fc851909d (patch)
tree5b9c49d163e2a701570c24b41ec4cc867f3881fe
parent3f712d2650937c78735375f9695d73a8dbc95a91 (diff)
spacing didn't match outgoing msgs
-rw-r--r--testing/toxic/chat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/toxic/chat.c b/testing/toxic/chat.c
index 175c6b05..15d124bc 100644
--- a/testing/toxic/chat.c
+++ b/testing/toxic/chat.c
@@ -52,7 +52,7 @@ static void chat_onMessage(ToxWindow* self, int num, uint8_t* msg, uint16_t len)
52 fix_name(nick); 52 fix_name(nick);
53 53
54 wattron(ctx->history, COLOR_PAIR(2)); 54 wattron(ctx->history, COLOR_PAIR(2));
55 wprintw(ctx->history, "[%02d:%02d:%02d] ", timeinfo->tm_hour, timeinfo->tm_min, timeinfo->tm_sec); 55 wprintw(ctx->history, "[%02d:%02d:%02d] ", timeinfo->tm_hour, timeinfo->tm_min, timeinfo->tm_sec);
56 wattroff(ctx->history, COLOR_PAIR(2)); 56 wattroff(ctx->history, COLOR_PAIR(2));
57 wattron(ctx->history, COLOR_PAIR(4)); 57 wattron(ctx->history, COLOR_PAIR(4));
58 wprintw(ctx->history, "%s: ", nick); 58 wprintw(ctx->history, "%s: ", nick);