OSDN Git Service

* strings.c (main): Correct handling of numeric argument.
authorian <ian>
Sun, 26 Dec 1999 18:49:30 +0000 (18:49 +0000)
committerian <ian>
Sun, 26 Dec 1999 18:49:30 +0000 (18:49 +0000)
binutils/ChangeLog
binutils/strings.c

index d53797d..7a59410 100644 (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
index 8ffe6a1..fb139fa 100644 (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;