summaryrefslogtreecommitdiff
path: root/src/tail.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1997-02-01 02:00:04 +0000
committerJim Meyering <jim@meyering.net>1997-02-01 02:00:04 +0000
commitc2d2dec516bd776d6acba7637d2e9ee721394604 (patch)
tree9c653ac2059ce12ae9004342e22881af2c68794a /src/tail.c
parent1e40423be84cc3e594d7c64c923f39663549dcca (diff)
downloadcoreutils-c2d2dec516bd776d6acba7637d2e9ee721394604.tar.xz
Compare getopt_long return value against -1, not EOF. Use NULL, not '(int *) 0' as last parameter in getopt_long call.
Diffstat (limited to 'src/tail.c')
-rw-r--r--src/tail.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/tail.c b/src/tail.c
index cede32010..b774606d6 100644
--- a/src/tail.c
+++ b/src/tail.c
@@ -993,8 +993,7 @@ parse_options (int argc, char **argv,
count_lines = 1;
forever = forever_multiple = from_start = print_headers = 0;
- while ((c = getopt_long (argc, argv, "c:n:fqv", long_options, (int *) 0))
- != EOF)
+ while ((c = getopt_long (argc, argv, "c:n:fqv", long_options, NULL)) != -1)
{
switch (c)
{