* 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.
This commit is contained in:
Tom Tromey
2012-10-18 20:14:45 +00:00
parent 94b0e70d0c
commit 0b0865da62
8 changed files with 20 additions and 8 deletions

View File

@ -4838,7 +4838,7 @@ print_one_static_tracepoint_marker (int count,
if (ui_out_is_mi_like_p (uiout))
{
char *fullname = symtab_to_fullname (sal.symtab);
const char *fullname = symtab_to_fullname (sal.symtab);
if (fullname)
ui_out_field_string (uiout, "fullname", fullname);