Remove debugging accidentally left in tekhex.c.
authorNick Clifton <nickc@redhat.com>
Tue, 27 Jun 2017 11:11:22 +0000 (12:11 +0100)
committerNick Clifton <nickc@redhat.com>
Tue, 27 Jun 2017 11:11:22 +0000 (12:11 +0100)
* tekhex.c (pass_over): Revert accidental conversion of a local
array to a static array.

bfd/ChangeLog
bfd/tekhex.c

index 272da0c5c548c37a709281a21b9a7df926d4ba5c..31fd5428663231e944a3f92ad77ccc1ec081c4cb 100644 (file)
@@ -1,3 +1,8 @@
+2017-06-27  Nick Clifton  <nickc@redhat.com>
+
+       * tekhex.c (pass_over): Revert accidental conversion of a local
+       array to a static array.
+
 2017-06-27  Senthil Kumar Selvaraj  <senthil_kumar.selvaraj@atmel.com>
 
        PR ld/13402
index cfa75d53c87233fb81672a2f9f3142eeafa93a24..1d605d5e3736cc8baf94e4b2a6d7fb439a00c607 100644 (file)
@@ -520,7 +520,7 @@ pass_over (bfd *abfd, bfd_boolean (*func) (bfd *, int, char *, char *))
 
   while (! is_eof)
     {
-      static char src[MAXCHUNK];
+      char src[MAXCHUNK];
       char type;
 
       /* Find first '%'.  */
This page took 0.02982 seconds and 4 git commands to generate.