aboutsummaryrefslogtreecommitdiff
path: root/gdb/ada-lang.c
diff options
context:
space:
mode:
authorJoel Brobecker <brobecker@gnat.com>2012-03-29 23:30:38 +0000
committerJoel Brobecker <brobecker@gnat.com>2012-03-29 23:30:38 +0000
commitc0af17067c508b2228e7bcb958f2c03584ccdc99 (patch)
treed107177656c7fd4738727630911e8a28d52a19d9 /gdb/ada-lang.c
parent6ea35997bf6e897985a5885b04b001c346db9a35 (diff)
downloadgdb-c0af17067c508b2228e7bcb958f2c03584ccdc99.zip
gdb-c0af17067c508b2228e7bcb958f2c03584ccdc99.tar.gz
gdb-c0af17067c508b2228e7bcb958f2c03584ccdc99.tar.bz2
Rename "wild_match" parameter in ada-lang.c:symbol_completion_add...
... to avoid a -Wshadow warning. gdb/ChangeLog: -Wshadow warning fix. * ada-lang.c (symbol_completion_add): Rename parameter "wild_match" into wild_match_p. Update code and documentation accordingly.
Diffstat (limited to 'gdb/ada-lang.c')
-rw-r--r--gdb/ada-lang.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/ada-lang.c b/gdb/ada-lang.c
index 64fb848..092ee26 100644
--- a/gdb/ada-lang.c
+++ b/gdb/ada-lang.c
@@ -5730,7 +5730,7 @@ symbol_completion_match (const char *sym_name,
completion should be performed. These two parameters are used to
determine which part of the symbol name should be added to the
completion vector.
- if WILD_MATCH is set, then wild matching is performed.
+ if WILD_MATCH_P is set, then wild matching is performed.
ENCODED should be set if TEXT represents a symbol name in its
encoded formed (in which case the completion should also be
encoded). */
@@ -5740,10 +5740,10 @@ symbol_completion_add (VEC(char_ptr) **sv,
const char *sym_name,
const char *text, int text_len,
const char *orig_text, const char *word,
- int wild_match, int encoded)
+ int wild_match_p, int encoded)
{
const char *match = symbol_completion_match (sym_name, text, text_len,
- wild_match, encoded);
+ wild_match_p, encoded);
char *completion;
if (match == NULL)