aboutsummaryrefslogtreecommitdiff
path: root/gdb/symtab.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2012-10-18 20:14:45 +0000
committerTom Tromey <tromey@redhat.com>2012-10-18 20:14:45 +0000
commit0b0865da626e7e2cd07073d11399dad643e192df (patch)
tree71054757a8f1361f0ed93d4deb8a91f8d5fafa20 /gdb/symtab.c
parent94b0e70d0c2a1309e3527a85a4c31a7eda4243d8 (diff)
downloadgdb-0b0865da626e7e2cd07073d11399dad643e192df.zip
gdb-0b0865da626e7e2cd07073d11399dad643e192df.tar.gz
gdb-0b0865da626e7e2cd07073d11399dad643e192df.tar.bz2
* tracepoint.c (print_one_static_tracepoint_marker): Constify.
* symtab.c (iterate_over_some_symtabs): Constify. * source.h (symtab_to_fullname): Return 'const char *'. * source.c (symtab_to_fullname): Return 'const char *'. * python/py-symtab.c (stpy_fullname): Constify. * cli/cli-cmds.c (edit_command): Constify. * breakpoint.c (print_breakpoint_location) (update_static_tracepoint): Constify.
Diffstat (limited to 'gdb/symtab.c')
-rw-r--r--gdb/symtab.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/symtab.c b/gdb/symtab.c
index cbfe4d0..7e16222 100644
--- a/gdb/symtab.c
+++ b/gdb/symtab.c
@@ -242,7 +242,7 @@ iterate_over_some_symtabs (const char *name,
if (real_path != NULL)
{
- char *fullname = symtab_to_fullname (s);
+ const char *fullname = symtab_to_fullname (s);
if (fullname != NULL)
{