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) |
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) usage(tail_usage); break; default: - errorMsg("\nUnknown arg: %c.\n\n",optopt); + error_msg("\nUnknown arg: %c.\n\n",optopt); usage(tail_usage); } } @@ -263,7 +263,7 @@ int tail_main(int argc, char **argv) else fd[test] = open(files[test], O_RDONLY); if (fd[test] == -1) - fatalError("Unable to open file %s.\n", files[test]); + error_msg_and_die("Unable to open file %s.\n", files[test]); tail_stream(fd[test]); bs=BUFSIZ; |