From: pk910 Date: Wed, 10 Aug 2011 00:50:34 +0000 (+0200) Subject: fixed debug output :D X-Git-Tag: v5.3~634 X-Git-Url: http://git.pk910.de/?a=commitdiff_plain;h=0d6b51f5eb937461cc92d4a10324cb2f3f16e53e;p=NeonServV5.git fixed debug output :D --- 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; } }