aboutsummaryrefslogtreecommitdiff
path: root/diff.c
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2006-05-21 03:01:59 -0700
committerJunio C Hamano <junkio@cox.net>2006-05-21 03:01:59 -0700
commit9e848163eda686093f689c25cfa9937ed2a9fdf8 (patch)
tree2d954ae112629407e13eada1b2d15524033912e5 /diff.c
parent87a56cd3b1dfb651076fbdc6d3591a32d1286a03 (diff)
downloadgit-9e848163eda686093f689c25cfa9937ed2a9fdf8.tar.gz
git-9e848163eda686093f689c25cfa9937ed2a9fdf8.tar.xz
checkdiff_consume: strtol parameter fix.
The second parameter is not the end of string input; it is the optional return value to retrieve where the parser stopped. Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'diff.c')
-rw-r--r--diff.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/diff.c b/diff.c
index af5db0ec1..d3bb10e00 100644
--- a/diff.c
+++ b/diff.c
@@ -431,7 +431,7 @@ static void checkdiff_consume(void *priv, char *line, unsigned long len)
else if (line[0] == '@') {
char *plus = strchr(line, '+');
if (plus)
- data->lineno = strtol(plus, line + len, 10);
+ data->lineno = strtol(plus, NULL, 10);
else
die("invalid diff");
}