diff options
author | Junio C Hamano <junkio@cox.net> | 2006-05-09 18:15:21 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-05-09 18:15:21 -0700 |
commit | c39c4f4746ba4543b532594543d252e2bad62234 (patch) | |
tree | 18e9e16678997da069f66d5a436ba35049d16365 | |
parent | 5acd64edec37a7d9783af1a2be99772d466e8f02 (diff) | |
download | git-c39c4f4746ba4543b532594543d252e2bad62234.tar.gz git-c39c4f4746ba4543b532594543d252e2bad62234.tar.xz |
builtin-grep: typofix
Signed-off-by: Junio C Hamano <junkio@cox.net>
-rw-r--r-- | builtin-grep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-grep.c b/builtin-grep.c index 26a3fc387..d290074af 100644 --- a/builtin-grep.c +++ b/builtin-grep.c @@ -701,7 +701,7 @@ int cmd_grep(int argc, const char **argv, char **envp) /* The rest are paths */ if (!seen_dashdash) { int j; - for (j = i; j < argc; i++) + for (j = i; j < argc; j++) verify_filename(prefix, argv[j]); } |