aboutsummaryrefslogtreecommitdiff
path: root/gdb/ada-lang.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2013-01-24 18:04:34 +0000
committerTom Tromey <tromey@redhat.com>2013-01-24 18:04:34 +0000
commit45e6c716a91b609472e7b807347f9ed3a86c8113 (patch)
tree63fd5c28cbae3b05f1f1100e041c9e6402b9aee8 /gdb/ada-lang.c
parent981dc7f155b61420a8d9409d4ba64aee75a098a1 (diff)
downloadgdb-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.c')
-rw-r--r--gdb/ada-lang.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/ada-lang.c b/gdb/ada-lang.c
index 4488b88..ef808c4 100644
--- a/gdb/ada-lang.c
+++ b/gdb/ada-lang.c
@@ -1296,11 +1296,11 @@ static struct htab *decoded_names_store;
const, but nevertheless modified to a semantically equivalent form
when a decoded name is cached in it. */
-char *
+const char *
ada_decode_symbol (const struct general_symbol_info *gsymbol)
{
- char **resultp =
- (char **) &gsymbol->language_specific.mangled_lang.demangled_name;
+ const char **resultp =
+ (const char **) &gsymbol->language_specific.mangled_lang.demangled_name;
if (*resultp == NULL)
{