* mi/mi-main.c (mi_cmd_execute): Remove unused variable.
authorVladimir Prus <vladimir@codesourcery.com>
Sun, 13 Jul 2008 03:59:28 +0000 (03:59 +0000)
committerVladimir Prus <vladimir@codesourcery.com>
Sun, 13 Jul 2008 03:59:28 +0000 (03:59 +0000)
Fix printing of frame, when frame is wrong.

gdb/ChangeLog
gdb/mi/mi-main.c

index 9ca905b218f132aa3a78f8c7fb804d317995a180..d764ccced4eea8ef8f85631a2cfe430115bbd019 100644 (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
index 43f3a5f8fd6eea1277852f9efef61e547f5523dc..4a52cbb66d6f76529e23383c13bab53bc235005e 100644 (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)