* mi/mi-main.c (mi_cmd_execute): Remove unused variable.

Fix printing of frame, when frame is wrong.
This commit is contained in:
Vladimir Prus 2008-07-13 03:59:28 +00:00
parent bbabb60fd8
commit ea06926780
2 changed files with 6 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2008-07-13 Vladimir Prus <vladimir@codesourcery.com>
* mi/mi-main.c (mi_cmd_execute): Remove unused variable.
Fix printing of frame, when frame is wrong.
2008-07-12 Ulrich Weigand <uweigand@de.ibm.com>
* spu-tdep.c (spu_frame_unwind_cache): Do not error if

View File

@ -1068,9 +1068,6 @@ static void
mi_cmd_execute (struct mi_parse *parse)
{
struct cleanup *cleanup;
char *thread_str;
char *frame_str;
int thread;
int i;
free_all_values ();
@ -1101,7 +1098,7 @@ mi_cmd_execute (struct mi_parse *parse)
/* find_relative_frame was successful */
select_frame (fid);
else
error (_("Invalid frame id: %s"), frame_str);
error (_("Invalid frame id: %d"), frame);
}
if (parse->cmd->argv_func != NULL)