From 124e79fe0bd0b4abb876c4190241247221d4fe10 Mon Sep 17 00:00:00 2001 From: pk910 Date: Wed, 10 Aug 2011 03:00:48 +0200 Subject: [PATCH] fixed last commit #2 --- IRCParser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IRCParser.c b/IRCParser.c index 0d9e7cc..5822b01 100644 --- a/IRCParser.c +++ b/IRCParser.c @@ -19,7 +19,7 @@ int parse_lines(struct ClientSocket *client, char *lines, int len) { lines[i] = 0; parse_line(client, line); line = lines+(i+1); - printf("SKIP %d: %s\n", i-startpos+1, line); + printf("SKIP %d: %s\n", i+1, line); used = i+1; } } -- 2.20.1