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 /coreutils/tail.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 'coreutils/tail.c')
-rw-r--r-- | coreutils/tail.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/tail.c b/coreutils/tail.c index a9da95462..308bb3085 100644 --- a/coreutils/tail.c +++ b/coreutils/tail.c | |||
@@ -225,7 +225,7 @@ int tail_main(int argc, char **argv) | |||
225 | usage(tail_usage); | 225 | usage(tail_usage); |
226 | break; | 226 | break; |
227 | default: | 227 | default: |
228 | errorMsg("\nUnknown arg: %c.\n\n",optopt); | 228 | error_msg("\nUnknown arg: %c.\n\n",optopt); |
229 | usage(tail_usage); | 229 | usage(tail_usage); |
230 | } | 230 | } |
231 | } | 231 | } |
@@ -263,7 +263,7 @@ int tail_main(int argc, char **argv) | |||
263 | else | 263 | else |
264 | fd[test] = open(files[test], O_RDONLY); | 264 | fd[test] = open(files[test], O_RDONLY); |
265 | if (fd[test] == -1) | 265 | if (fd[test] == -1) |
266 | fatalError("Unable to open file %s.\n", files[test]); | 266 | error_msg_and_die("Unable to open file %s.\n", files[test]); |
267 | tail_stream(fd[test]); | 267 | tail_stream(fd[test]); |
268 | 268 | ||
269 | bs=BUFSIZ; | 269 | bs=BUFSIZ; |