From 0d6b51f5eb937461cc92d4a10324cb2f3f16e53e Mon Sep 17 00:00:00 2001 From: pk910 Date: Wed, 10 Aug 2011 02:50:34 +0200 Subject: [PATCH] fixed debug output :D --- IRCParser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IRCParser.c b/IRCParser.c index 0bbe797..27bcaf6 100644 --- a/IRCParser.c +++ b/IRCParser.c @@ -18,7 +18,7 @@ int parse_lines(struct ClientSocket *client, char *lines, int len) { lines[i] = 0; parse_line(client, lines); lines += strlen(lines)+1; - printf("SKIP %d: %s\n", strlen(lines)+1, lines); + printf("SKIP %lu: %s\n", (unsigned long) strlen(lines)+1, lines); startpos = i+1; } } -- 2.20.1