diff options
author | Mark Whitley <markw@lineo.com> | 2000-12-07 19:56:48 +0000 |
---|---|---|
committer | Mark Whitley <markw@lineo.com> | 2000-12-07 19:56:48 +0000 |
commit | f57c944e09417edcbcd69f2b01b937cadef39db2 (patch) | |
tree | a55822621d54bd82c54e272fa986e45698fea0f1 /findutils/grep.c | |
parent | 7b5c16ebe5f1b057603cf1c0b0187be418725c42 (diff) | |
download | busybox-w32-f57c944e09417edcbcd69f2b01b937cadef39db2.tar.gz busybox-w32-f57c944e09417edcbcd69f2b01b937cadef39db2.tar.bz2 busybox-w32-f57c944e09417edcbcd69f2b01b937cadef39db2.zip |
Changed names of functions in utility.c and all affected files, to make
compliant with the style guide. Everybody rebuild your tags file!
Diffstat (limited to 'findutils/grep.c')
-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 c0193bce3..9014443b1 100644 --- a/findutils/grep.c +++ b/findutils/grep.c | |||
@@ -169,7 +169,7 @@ extern int grep_main(int argc, char **argv) | |||
169 | file = fopen(cur_file, "r"); | 169 | file = fopen(cur_file, "r"); |
170 | if (file == NULL) { | 170 | if (file == NULL) { |
171 | if (!suppress_err_msgs) | 171 | if (!suppress_err_msgs) |
172 | errorMsg("%s: %s\n", cur_file, strerror(errno)); | 172 | error_msg("%s: %s\n", cur_file, strerror(errno)); |
173 | } | 173 | } |
174 | else { | 174 | else { |
175 | grep_file(file); | 175 | grep_file(file); |