gdb/
authorJan Kratochvil <jan.kratochvil@redhat.com>
Thu, 10 Jan 2013 21:15:51 +0000 (21:15 +0000)
committerJan Kratochvil <jan.kratochvil@redhat.com>
Thu, 10 Jan 2013 21:15:51 +0000 (21:15 +0000)
Code cleanup.
* psymtab.c (psymtab_to_fullname, psymtab_to_fullname): Make the return
type const char *.
* tui/tui-source.c (tui_source_is_displayed): Make the parameter fname
const char *.
* tui/tui-source.h (tui_source_is_displayed): Likewise.

gdb/ChangeLog
gdb/psymtab.c
gdb/tui/tui-source.c
gdb/tui/tui-source.h

index fe5bb9dd92258376254c285d6279384057698da9..6f4ad13f54f8715cad767040239ab76cb5ce97c6 100644 (file)
@@ -1,3 +1,12 @@
+2013-01-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
+
+       Code cleanup.
+       * psymtab.c (psymtab_to_fullname, psymtab_to_fullname): Make the return
+       type const char *.
+       * tui/tui-source.c (tui_source_is_displayed): Make the parameter fname
+       const char *.
+       * tui/tui-source.h (tui_source_is_displayed): Likewise.
+
 2013-01-09  Anthony Green  <green@moxielogic.com>
 
        * cp-abi.c (cplus_print_vtable): Don't return value from void
index acbdd6a8761bf6bf67086f9e4440da59780c3ef0..c6adb971e827dd77d05dded965de1b0093360d08 100644 (file)
@@ -58,7 +58,7 @@ static struct partial_symbol *lookup_partial_symbol (struct objfile *,
                                                     const char *, int,
                                                     domain_enum);
 
-static char *psymtab_to_fullname (struct partial_symtab *ps);
+static const char *psymtab_to_fullname (struct partial_symtab *ps);
 
 static struct partial_symbol *find_pc_sect_psymbol (struct objfile *,
                                                    struct partial_symtab *,
@@ -1174,7 +1174,7 @@ map_symbol_filenames_psymtab (struct objfile *objfile,
    If this function fails to find the file that this partial_symtab represents,
    NULL will be returned and ps->fullname will be set to NULL.  */
 
-static char *
+static const char *
 psymtab_to_fullname (struct partial_symtab *ps)
 {
   int r;
index eb7879c268c6e8d38b1889746757ed051bdb6685..fb60fd463ef9164d37c7998ace618aca4983b6b6 100644 (file)
@@ -332,7 +332,7 @@ tui_show_symtab_source (struct gdbarch *gdbarch, struct symtab *s,
 /* Answer whether the source is currently displayed in the source
    window.  */
 int
-tui_source_is_displayed (char *fname)
+tui_source_is_displayed (const char *fname)
 {
   return (TUI_SRC_WIN != NULL
          && TUI_SRC_WIN->generic.content_in_use 
index f5f31edc37c7f731d3763c8e37efcf0daebb67d6..8870268875a980dbb6e9028680fa96dc44bcb0b8 100644 (file)
@@ -35,7 +35,7 @@ extern enum tui_status tui_set_source_content (struct symtab *,
 extern void tui_show_symtab_source (struct gdbarch *, struct symtab *,
                                    struct tui_line_or_address,
                                    int);
-extern int tui_source_is_displayed (char *);
+extern int tui_source_is_displayed (const char *);
 extern void tui_vertical_source_scroll (enum tui_scroll_direction,
                                        int);