diff options
Diffstat (limited to 'shell/lash.c')
-rw-r--r-- | shell/lash.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/lash.c b/shell/lash.c index a209348..d87c5a2 100644 --- a/shell/lash.c +++ b/shell/lash.c @@ -707,10 +707,10 @@ static int get_command(FILE * source, char *command) return 0; } -static char* itoa(register int i) +static char* itoa(int i) { static char a[7]; /* Max 7 ints */ - register char *b = a + sizeof(a) - 1; + char *b = a + sizeof(a) - 1; int sign = (i < 0); if (sign) |