ratox

FIFO based tox client
git clone git://git.2f30.org/ratox
Log | Files | Refs | README | LICENSE

commit 7a06e015762d5f585b44d5d9e176605786693830
parent ec057b18c29c00d5686dd6c2749e490c4b0e5749
Author: sin <sin@2f30.org>
Date:   Mon, 15 Sep 2014 11:39:09 +0100

Capitalize string in output

Diffstat:
Mratatox.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ratatox.c b/ratatox.c @@ -690,7 +690,7 @@ again: if (cmd[1] == '\0' || isspace((int)cmd[1])) return (*cmds[i].cb)(cmd, strlen(cmd)); - fprintf(stderr, "unknown command: %s\n", cmd); + fprintf(stderr, "Unknown command: %s\n", cmd); return -1; }