mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-27 06:17:47 +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>
|
1999-12-23 Andrew Haley <aph@cygnus.com>
|
||||||
|
|
||||||
* dlltool.c (mtable): mcore how_jtab_roff is 4 bytes into the
|
* dlltool.c (mtable): mcore how_jtab_roff is 4 bytes into the
|
||||||
|
@ -203,7 +203,7 @@ main (argc, argv)
|
|||||||
|
|
||||||
default:
|
default:
|
||||||
if (string_min < 0)
|
if (string_min < 0)
|
||||||
string_min = optc;
|
string_min = optc - '0';
|
||||||
else
|
else
|
||||||
string_min = string_min * 10 + optc - '0';
|
string_min = string_min * 10 + optc - '0';
|
||||||
break;
|
break;
|
||||||
|
Reference in New Issue
Block a user