aboutsummaryrefslogtreecommitdiff
path: root/gdb/symtab.c
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@gnu.org>2008-04-19 11:39:50 +0000
committerMark Kettenis <kettenis@gnu.org>2008-04-19 11:39:50 +0000
commit7fc830e29069561bcd3670759e17ffd46f0b67fd (patch)
tree706c6bca4e932313f14e1cd42a9d3794f92429bd /gdb/symtab.c
parentbb2edc7f626ed54d133432a619f67c85e0c69f36 (diff)
downloadfsf-binutils-gdb-7fc830e29069561bcd3670759e17ffd46f0b67fd.zip
fsf-binutils-gdb-7fc830e29069561bcd3670759e17ffd46f0b67fd.tar.gz
fsf-binutils-gdb-7fc830e29069561bcd3670759e17ffd46f0b67fd.tar.bz2
* symtab.c: (multiple_symbols_modes, multiple_symbols_ask)
(multiple_symbols_cancel): Remove extra const. * symtab.h: Likewise.
Diffstat (limited to 'gdb/symtab.c')
-rw-r--r--gdb/symtab.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/symtab.c b/gdb/symtab.c
index 6422db4..5eb1d9d 100644
--- a/gdb/symtab.c
+++ b/gdb/symtab.c
@@ -128,9 +128,9 @@ void _initialize_symtab (void);
to multiple-choice menus when more than one symbol matches during
a symbol lookup. */
-const char const multiple_symbols_ask[] = "ask";
-const char const multiple_symbols_all[] = "all";
-const char const multiple_symbols_cancel[] = "cancel";
+const char multiple_symbols_ask[] = "ask";
+const char multiple_symbols_all[] = "all";
+const char multiple_symbols_cancel[] = "cancel";
static const char *multiple_symbols_modes[] =
{
multiple_symbols_ask,