diff options
Diffstat (limited to 'gdb/dsrec.c')
-rw-r--r-- | gdb/dsrec.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/dsrec.c b/gdb/dsrec.c index 04dd9c6..bc47f84 100644 --- a/gdb/dsrec.c +++ b/gdb/dsrec.c @@ -226,10 +226,10 @@ make_srec (char *srec, CORE_ADDR targ_addr, bfd *abfd, asection *sect, { unsigned char checksum; int tmp; - const static char hextab[] = "0123456789ABCDEF"; - const static char data_code_table[] = "123"; - const static char term_code_table[] = "987"; - const static char header_code_table[] = "000"; + static const char hextab[] = "0123456789ABCDEF"; + static const char data_code_table[] = "123"; + static const char term_code_table[] = "987"; + static const char header_code_table[] = "000"; char const *code_table; int addr_size; int payload_size; |