diff options
author | Nick Clifton <nickc@redhat.com> | 2017-06-27 12:11:22 +0100 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2017-06-27 12:11:22 +0100 |
commit | 2d68166e8704569eeceb76ac743ea1e7cca2af26 (patch) | |
tree | 12911c4fc7a3362eb34f589834c63b5f268174cc /bfd/tekhex.c | |
parent | 8268c77870de3c27ef598348f3023ba159fd0fca (diff) | |
download | gdb-2d68166e8704569eeceb76ac743ea1e7cca2af26.zip gdb-2d68166e8704569eeceb76ac743ea1e7cca2af26.tar.gz gdb-2d68166e8704569eeceb76ac743ea1e7cca2af26.tar.bz2 |
Remove debugging accidentally left in tekhex.c.
* tekhex.c (pass_over): Revert accidental conversion of a local
array to a static array.
Diffstat (limited to 'bfd/tekhex.c')
-rw-r--r-- | bfd/tekhex.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 '%'. */ |