From: Nick Clifton Date: Tue, 27 Jun 2017 11:11:22 +0000 (+0100) Subject: Remove debugging accidentally left in tekhex.c. X-Git-Tag: binutils-2_29~106 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2d68166e8704569eeceb76ac743ea1e7cca2af26;p=platform%2Fupstream%2Fbinutils.git Remove debugging accidentally left in tekhex.c. * tekhex.c (pass_over): Revert accidental conversion of a local array to a static array. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 272da0c..31fd542 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2017-06-27 Nick Clifton + + * tekhex.c (pass_over): Revert accidental conversion of a local + array to a static array. + 2017-06-27 Senthil Kumar Selvaraj PR ld/13402 diff --git a/bfd/tekhex.c b/bfd/tekhex.c index cfa75d5..1d605d5 100644 --- a/bfd/tekhex.c +++ b/bfd/tekhex.c @@ -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 '%'. */