diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-02-11 11:44:38 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-02-11 11:44:38 +0000 |
commit | a985d306a1fb5533e6fd93dbbcc04e493a126de8 (patch) | |
tree | bb261f14ce5adb3c3281feb9c12c58c078155927 /findutils | |
parent | 83177991c86dd49ac447225f33b84e1883ca49ee (diff) | |
download | busybox-w32-a985d306a1fb5533e6fd93dbbcc04e493a126de8.tar.gz busybox-w32-a985d306a1fb5533e6fd93dbbcc04e493a126de8.tar.bz2 busybox-w32-a985d306a1fb5533e6fd93dbbcc04e493a126de8.zip |
- spelling fixes
Diffstat (limited to 'findutils')
-rw-r--r-- | findutils/grep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/findutils/grep.c b/findutils/grep.c index 4c9582e8c..1094dcc63 100644 --- a/findutils/grep.c +++ b/findutils/grep.c | |||
@@ -229,7 +229,7 @@ static int grep_file(FILE *file) | |||
229 | /* if we're just printing filenames, we stop after the first match */ | 229 | /* if we're just printing filenames, we stop after the first match */ |
230 | if (PRINT_FILES_WITH_MATCHES) { | 230 | if (PRINT_FILES_WITH_MATCHES) { |
231 | puts(cur_file); | 231 | puts(cur_file); |
232 | /* fall thru to "return 1" */ | 232 | /* fall through to "return 1" */ |
233 | } | 233 | } |
234 | /* OPT_L aka PRINT_FILES_WITHOUT_MATCHES: return early */ | 234 | /* OPT_L aka PRINT_FILES_WITHOUT_MATCHES: return early */ |
235 | return 1; /* one match */ | 235 | return 1; /* one match */ |