Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
remove superflous "const"
[gitweb.git]
/
diff.c
diff --git
a/diff.c
b/diff.c
index af5db0ec12817a259c8c4f4c1482aa90ace03f17..d3bb10e009f58a36e1f3b09f11253a84ac72c46e 100644
(file)
--- 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");
}