diff options
author | Jim Meyering <jim@meyering.net> | 1997-02-01 03:05:36 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1997-02-01 03:05:36 +0000 |
commit | b8c82a8e39e901c6b231217a009982a0e0b782a6 (patch) | |
tree | ea1086eb40e509ef40ba21c407285ae847e263de /src/pathchk.c | |
parent | 4f51b86bfb737aadf750d70b6a7bd4e0ec36962f (diff) | |
download | coreutils-b8c82a8e39e901c6b231217a009982a0e0b782a6.tar.gz coreutils-b8c82a8e39e901c6b231217a009982a0e0b782a6.tar.bz2 coreutils-b8c82a8e39e901c6b231217a009982a0e0b782a6.zip |
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/pathchk.c')
-rw-r--r-- | src/pathchk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pathchk.c b/src/pathchk.c index c8346148e..db8e23496 100644 --- a/src/pathchk.c +++ b/src/pathchk.c @@ -124,7 +124,7 @@ main (int argc, char **argv) bindtextdomain (PACKAGE, LOCALEDIR); textdomain (PACKAGE); - while ((optc = getopt_long (argc, argv, "p", longopts, (int *) 0)) != EOF) + while ((optc = getopt_long (argc, argv, "p", longopts, NULL)) != -1) { switch (optc) { |