2013-06-26  Pedro Alves  <pedro@codesourcery.com>
	    Yao Qi  <yao@codesourcery.com>

	* tracepoint.c (trace_dump_command): GDB emits an error
	 instead of a warning when a traceframe is not selected.
This commit is contained in:
Yao Qi 2013-06-26 05:28:01 +00:00
parent cbfa3b6104
commit 05796b355f
2 changed files with 7 additions and 4 deletions

View File

@ -1,3 +1,9 @@
2013-06-26 Pedro Alves <pedro@codesourcery.com>
Yao Qi <yao@codesourcery.com>
* tracepoint.c (trace_dump_command): GDB emits an error
instead of a warning when a traceframe is not selected.
2013-06-26 Pedro Alves <pedro@codesourcery.com>
Yao Qi <yao@codesourcery.com>

View File

@ -2982,10 +2982,7 @@ trace_dump_command (char *args, int from_tty)
struct cleanup *old_chain;
if (tracepoint_number == -1)
{
warning (_("No current trace frame."));
return;
}
error (_("No current trace frame."));
old_chain = make_cleanup (null_cleanup, NULL);
t = get_tracepoint (tracepoint_number);