diff options
author | Joel Brobecker <brobecker@gnat.com> | 2002-09-13 00:18:33 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2002-09-13 00:18:33 +0000 |
commit | 3bada2a2df47a36a9c44e1cc50669124af7f6370 (patch) | |
tree | a2735f0ff1a831f40aeb185a32cfb0de59e67118 /gdb/valops.c | |
parent | 4cfa75e2b22652457654ddbffc9b2e0b1d57b084 (diff) | |
download | gdb-3bada2a2df47a36a9c44e1cc50669124af7f6370.zip gdb-3bada2a2df47a36a9c44e1cc50669124af7f6370.tar.gz gdb-3bada2a2df47a36a9c44e1cc50669124af7f6370.tar.bz2 |
* value.h (find_function_in_inferior): Add const keyword to
one of the parameters. Allows us to invoke this function with
a const char *.
* valops.c (find_function_in_inferior): Likewise.
Diffstat (limited to 'gdb/valops.c')
-rw-r--r-- | gdb/valops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/valops.c b/gdb/valops.c index 1eeedd3..b2199cb 100644 --- a/gdb/valops.c +++ b/gdb/valops.c @@ -95,7 +95,7 @@ int unwind_on_signal_p = 0; /* Find the address of function name NAME in the inferior. */ struct value * -find_function_in_inferior (char *name) +find_function_in_inferior (const char *name) { register struct symbol *sym; sym = lookup_symbol (name, 0, VAR_NAMESPACE, 0, NULL); |