aboutsummaryrefslogtreecommitdiff
path: root/shell/ash.c
diff options
context:
space:
mode:
Diffstat (limited to 'shell/ash.c')
-rw-r--r--shell/ash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c
index 1eb29eb95..3a1e1d797 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -9665,7 +9665,7 @@ shiftcmd(int argc UNUSED_PARAM, char **argv)
9665 if (argv[1]) 9665 if (argv[1])
9666 n = number(argv[1]); 9666 n = number(argv[1]);
9667 if (n > shellparam.nparam) 9667 if (n > shellparam.nparam)
9668 n = shellparam.nparam; 9668 n = 0; /* bash compat, was = shellparam.nparam; */
9669 INT_OFF; 9669 INT_OFF;
9670 shellparam.nparam -= n; 9670 shellparam.nparam -= n;
9671 for (ap1 = shellparam.p; --n >= 0; ap1++) { 9671 for (ap1 = shellparam.p; --n >= 0; ap1++) {