* strings.c (main): Correct handling of numeric argument.

This commit is contained in:
Ian Lance Taylor 1999-12-26 18:49:30 +00:00
parent 893addd8f4
commit 221f77a9db
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
1999-12-26 Ian Lance Taylor <ian@zembu.com>
* strings.c (main): Correct handling of numeric argument.
1999-12-23 Andrew Haley <aph@cygnus.com>
* dlltool.c (mtable): mcore how_jtab_roff is 4 bytes into the

View File

@ -203,7 +203,7 @@ main (argc, argv)
default:
if (string_min < 0)
string_min = optc;
string_min = optc - '0';
else
string_min = string_min * 10 + optc - '0';
break;