aboutsummaryrefslogtreecommitdiff
path: root/coreutils/split.c
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils/split.c')
-rw-r--r--coreutils/split.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/split.c b/coreutils/split.c
index e67c3de66..19d58a21b 100644
--- a/coreutils/split.c
+++ b/coreutils/split.c
@@ -81,8 +81,8 @@ int split_main(int argc UNUSED_PARAM, char **argv)
81 81
82 setup_common_bufsiz(); 82 setup_common_bufsiz();
83 83
84 opt_complementary = "?2:a+"; /* max 2 args; -a N */ 84 opt_complementary = "?2"; /* max 2 args; -a N */
85 opt = getopt32(argv, "l:b:a:", &count_p, &count_p, &suffix_len); 85 opt = getopt32(argv, "l:b:a:+", &count_p, &count_p, &suffix_len);
86 86
87 if (opt & SPLIT_OPT_l) 87 if (opt & SPLIT_OPT_l)
88 cnt = XATOOFF(count_p); 88 cnt = XATOOFF(count_p);