diff options
Diffstat (limited to 'gdb/parse.c')
-rw-r--r-- | gdb/parse.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gdb/parse.c b/gdb/parse.c index c76e0d5..63cbc74 100644 --- a/gdb/parse.c +++ b/gdb/parse.c @@ -648,8 +648,7 @@ write_dollar_variable (struct parser_state *ps, struct stoken str) /* On some systems, such as HP-UX and hppa-linux, certain system routines have names beginning with $ or $$. Check for those, first. */ - sym = lookup_symbol (copy_name (str), (struct block *) NULL, - VAR_DOMAIN, NULL); + sym = lookup_symbol (copy_name (str), NULL, VAR_DOMAIN, NULL); if (sym.symbol) { write_exp_elt_opcode (ps, OP_VAR_VALUE); |