diff options
author | Jim Meyering <jim@meyering.net> | 1997-02-01 02:00:04 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1997-02-01 02:00:04 +0000 |
commit | c2d2dec516bd776d6acba7637d2e9ee721394604 (patch) | |
tree | 9c653ac2059ce12ae9004342e22881af2c68794a /src/sum.c | |
parent | 1e40423be84cc3e594d7c64c923f39663549dcca (diff) | |
download | coreutils-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/sum.c')
-rw-r--r-- | src/sum.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -213,7 +213,7 @@ main (int argc, char **argv) have_read_stdin = 0; - while ((optc = getopt_long (argc, argv, "rs", longopts, (int *) 0)) != -1) + while ((optc = getopt_long (argc, argv, "rs", longopts, NULL)) != -1) { switch (optc) { |