diff options
Diffstat (limited to 'coreutils/split.c')
-rw-r--r-- | coreutils/split.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/split.c b/coreutils/split.c index d1eb82955..3ec539a6a 100644 --- a/coreutils/split.c +++ b/coreutils/split.c @@ -69,7 +69,7 @@ int split_main(int argc, char **argv) char *src; opt_complementary = "?2"; - opt = getopt32(argc, argv, "l:b:a:", &count_p, &count_p, &sfx); + opt = getopt32(argv, "l:b:a:", &count_p, &count_p, &sfx); if (opt & SPLIT_OPT_l) cnt = xatoul(count_p); |