From 24f818742e35c6c9de0d16b4acd4fe3083676044 Mon Sep 17 00:00:00 2001 From: Joel Brobecker Date: Fri, 13 Mar 2009 02:34:13 +0000 Subject: [PATCH] * source.c (source_full_path_of): Constify parameter filename. * defs.h (source_full_path_of): Update declaration accordingly. --- gdb/ChangeLog | 7 +++++++ gdb/defs.h | 2 +- gdb/source.c | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 97f1396c87d..c6993590ea0 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,10 @@ +2009-02-17 Joel Brobecker + + The following patch helps getting rid of a warning inside solib-som.c. + + * source.c (source_full_path_of): Constify parameter filename. + * defs.h (source_full_path_of): Update declaration accordingly. + 2009-03-12 Joel Brobecker * ada-lang.c (ada_evaluate_subexp): Merge case BINOP_REM and diff --git a/gdb/defs.h b/gdb/defs.h index 845b3203f4a..001db816a6b 100644 --- a/gdb/defs.h +++ b/gdb/defs.h @@ -613,7 +613,7 @@ extern void print_address (CORE_ADDR, struct ui_file *); extern int openp (const char *, int, const char *, int, int, char **); -extern int source_full_path_of (char *, char **); +extern int source_full_path_of (const char *, char **); extern void mod_path (char *, char **); diff --git a/gdb/source.c b/gdb/source.c index d1562ea1c0e..43df92ff83b 100644 --- a/gdb/source.c +++ b/gdb/source.c @@ -822,7 +822,7 @@ done: Else, this functions returns 0, and FULL_PATHNAME is set to NULL. */ int -source_full_path_of (char *filename, char **full_pathname) +source_full_path_of (const char *filename, char **full_pathname) { int fd; -- 2.30.2