mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-01 20:12:01 +08:00
* tracepoint.c (trace_find_tracepoint_command): Replace call to
parse_and_eval_address with a call to parse_and_eval_long as we are evaluating an integer, not an address. * top.c (show_commands): Ditto.
This commit is contained in:
@ -2055,7 +2055,7 @@ trace_find_tracepoint_command (char *args, int from_tty)
|
||||
else
|
||||
tdp = tracepoint_number; /* default is current TDP */
|
||||
else
|
||||
tdp = parse_and_eval_address (args);
|
||||
tdp = parse_and_eval_long (args);
|
||||
|
||||
sprintf (target_buf, "QTFrame:tdp:%x", tdp);
|
||||
finish_tfind_command (target_buf, sizeof (target_buf), from_tty);
|
||||
|
Reference in New Issue
Block a user