diff options
author | Tom Tromey <tromey@redhat.com> | 2013-01-24 18:04:34 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2013-01-24 18:04:34 +0000 |
commit | 45e6c716a91b609472e7b807347f9ed3a86c8113 (patch) | |
tree | 63fd5c28cbae3b05f1f1100e041c9e6402b9aee8 /gdb/ada-lang.h | |
parent | 981dc7f155b61420a8d9409d4ba64aee75a098a1 (diff) | |
download | gdb-45e6c716a91b609472e7b807347f9ed3a86c8113.zip gdb-45e6c716a91b609472e7b807347f9ed3a86c8113.tar.gz gdb-45e6c716a91b609472e7b807347f9ed3a86c8113.tar.bz2 |
* ada-lang.h (ada_decode_symbol): Make return type const.
* ada-lang.c (ada_decode_symbol): Likewise.
Diffstat (limited to 'gdb/ada-lang.h')
-rw-r--r-- | gdb/ada-lang.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/ada-lang.h b/gdb/ada-lang.h index 509a229..418f8da 100644 --- a/gdb/ada-lang.h +++ b/gdb/ada-lang.h @@ -219,7 +219,7 @@ extern struct value *ada_get_decoded_value (struct value *value); extern struct type *ada_get_decoded_type (struct type *type); -extern char *ada_decode_symbol (const struct general_symbol_info*); +extern const char *ada_decode_symbol (const struct general_symbol_info *); extern const char *ada_decode (const char*); |