aboutsummaryrefslogtreecommitdiff
path: root/gdb/tracepoint.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2011-04-04 17:41:07 +0000
committerTom Tromey <tromey@redhat.com>2011-04-04 17:41:07 +0000
commit58438ac18761353e6d8461c914992071d4fcb1d3 (patch)
tree090b850620b6091db99fdb84af32f056a48c18cd /gdb/tracepoint.c
parenta3293649cdf2585cbe25d9a742b84b2e7bd6111c (diff)
downloadgdb-58438ac18761353e6d8461c914992071d4fcb1d3.zip
gdb-58438ac18761353e6d8461c914992071d4fcb1d3.tar.gz
gdb-58438ac18761353e6d8461c914992071d4fcb1d3.tar.bz2
* tracepoint.c (scope_info): Update.
* symtab.c (decode_line_spec): Update. * python/python.c (gdbpy_decode_line): Update. * linespec.h (decode_line_1): Update. * linespec.c (decode_line_1): Remove 'not_found_ptr' argument. (decode_compound, find_method, symtab_from_filename) (decode_variable): Likewise. * cli/cli-cmds.c (edit_command): Update. (list_command): Update. * breakpoint.c (parse_breakpoint_sals): Remove 'not_found_ptr' argument. (create_breakpoint): Update. (until_break_command): Update. (addr_string_to_sals): Update. (decode_line_spec_1): Update.
Diffstat (limited to 'gdb/tracepoint.c')
-rw-r--r--gdb/tracepoint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/tracepoint.c b/gdb/tracepoint.c
index 3ae35d0..d5f69e7 100644
--- a/gdb/tracepoint.c
+++ b/gdb/tracepoint.c
@@ -2333,7 +2333,7 @@ scope_info (char *args, int from_tty)
error (_("requires an argument (function, "
"line or *addr) to define a scope"));
- sals = decode_line_1 (&args, 1, NULL, 0, NULL, NULL);
+ sals = decode_line_1 (&args, 1, NULL, 0, NULL);
if (sals.nelts == 0)
return; /* Presumably decode_line_1 has already warned. */