mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-05-30 15:56:36 +08:00
* strings.c (main): Correct handling of numeric argument.
This commit is contained in:
@ -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
|
||||
|
@ -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;
|
||||
|
Reference in New Issue
Block a user