diff options
author | Tom Tromey <tromey@redhat.com> | 2013-04-12 14:49:25 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2013-04-12 14:49:25 +0000 |
commit | d47a1bc1fa7038bb17b1ac20d7dc92af702cb9e4 (patch) | |
tree | cf674a9d2f7696548f06e8bebbe5c9084c9c6b6b /gdb/symtab.h | |
parent | dccca75d8053c3c99965478ee2e667ad9e8e0812 (diff) | |
download | gdb-d47a1bc1fa7038bb17b1ac20d7dc92af702cb9e4.zip gdb-d47a1bc1fa7038bb17b1ac20d7dc92af702cb9e4.tar.gz gdb-d47a1bc1fa7038bb17b1ac20d7dc92af702cb9e4.tar.bz2 |
* symtab.h (struct general_symbol_info) <value.bytes>: Make const.
Diffstat (limited to 'gdb/symtab.h')
-rw-r--r-- | gdb/symtab.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/symtab.h b/gdb/symtab.h index 29a12ff..c735e16 100644 --- a/gdb/symtab.h +++ b/gdb/symtab.h @@ -116,7 +116,7 @@ struct general_symbol_info struct block *block; - gdb_byte *bytes; + const gdb_byte *bytes; CORE_ADDR address; |