commit | a00329ca8edd29c62084e400aa972cfcd0a8ab02 | [log] [tgz] |
---|---|---|
author | Denys Vlasenko <vda.linux@googlemail.com> | Sun Aug 30 20:05:10 2009 +0200 |
committer | Denys Vlasenko <vda.linux@googlemail.com> | Sun Aug 30 20:05:10 2009 +0200 |
tree | d349cfc8707bac69fb0a85e3c83f9c0b966e5320 | |
parent | 630dde1cef920dd8ff99bda0f3fdebfb564e2260 [diff] [blame] |
ash: better comment. no code changes Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
diff --git a/shell/ash.c b/shell/ash.c index bb9464a..35d5cde 100644 --- a/shell/ash.c +++ b/shell/ash.c
@@ -6400,7 +6400,7 @@ case '7': case '8': case '9': - num = atoi(name); /* number(name) fails on ${var#str} etc */ + num = atoi(name); /* number(name) fails on ${N#str} etc */ if (num < 0 || num > shellparam.nparam) return -1; p = num ? shellparam.p[num - 1] : arg0;