aboutsummaryrefslogtreecommitdiff
path: root/coreutils/head.c
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils/head.c')
-rw-r--r--coreutils/head.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/coreutils/head.c b/coreutils/head.c
index d732461f7..f2c948300 100644
--- a/coreutils/head.c
+++ b/coreutils/head.c
@@ -49,9 +49,8 @@ int head_main(int argc, char **argv)
49 49
50#if !ENABLE_DEBUG_YANK_SUSv2 || ENABLE_FEATURE_FANCY_HEAD 50#if !ENABLE_DEBUG_YANK_SUSv2 || ENABLE_FEATURE_FANCY_HEAD
51 /* Allow legacy syntax of an initial numeric option without -n. */ 51 /* Allow legacy syntax of an initial numeric option without -n. */
52 if ((argc > 1) && (argv[1][0] == '-') 52 if (argc > 1 && argv[1][0] == '-'
53 /* && (isdigit)(argv[1][1]) */ 53 && isdigit(argv[1][1])
54 && (((unsigned int)(argv[1][1] - '0')) <= 9)
55 ) { 54 ) {
56 --argc; 55 --argc;
57 ++argv; 56 ++argv;