mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-20 09:58:19 +08:00
Remove debugging accidentally left in tekhex.c.
* tekhex.c (pass_over): Revert accidental conversion of a local array to a static array.
This commit is contained in:
@ -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>
|
2017-06-27 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>
|
||||||
|
|
||||||
PR ld/13402
|
PR ld/13402
|
||||||
|
@ -520,7 +520,7 @@ pass_over (bfd *abfd, bfd_boolean (*func) (bfd *, int, char *, char *))
|
|||||||
|
|
||||||
while (! is_eof)
|
while (! is_eof)
|
||||||
{
|
{
|
||||||
static char src[MAXCHUNK];
|
char src[MAXCHUNK];
|
||||||
char type;
|
char type;
|
||||||
|
|
||||||
/* Find first '%'. */
|
/* Find first '%'. */
|
||||||
|
Reference in New Issue
Block a user