diff options
Diffstat (limited to 'coreutils/sum.c')
-rw-r--r-- | coreutils/sum.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/sum.c b/coreutils/sum.c index 5799d142d..4a3760bb4 100644 --- a/coreutils/sum.c +++ b/coreutils/sum.c @@ -80,7 +80,7 @@ int sum_main(int argc, char **argv) unsigned n; unsigned type = SUM_BSD; - n = getopt32(argc, argv, "sr"); + n = getopt32(argv, "sr"); if (n & 1) type = SUM_SYSV; /* give the bsd priority over sysv func */ if (n & 2) type = SUM_BSD; |