* mi/mi-main.c (mi_cmd_exec_next, mi_cmd_exec_next_instruction)
authorPedro Alves <palves@redhat.com>
Sat, 16 Aug 2008 22:26:19 +0000 (22:26 +0000)
committerPedro Alves <palves@redhat.com>
Sat, 16 Aug 2008 22:26:19 +0000 (22:26 +0000)
(mi_cmd_exec_step, mi_cmd_exec_step_instruction)
(mi_cmd_exec_finish): Remove "return".

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

index df1cb37f32855a80ed215d8b3ae3f3fb3ccddccf..3d590003893d607a90b09489c0d690e64880385d 100644 (file)
@@ -1,3 +1,9 @@
+2008-08-16  Pedro Alves  <pedro@codesourcery.com>
+
+       * mi/mi-main.c (mi_cmd_exec_next, mi_cmd_exec_next_instruction)
+       (mi_cmd_exec_step, mi_cmd_exec_step_instruction)
+       (mi_cmd_exec_finish): Remove "return".
+
 2008-08-16  Pedro Alves  <pedro@codesourcery.com>
 
        * target.h (pop_all_targets): Declare.
index 733fc474f3935e42fa789fbce15fdcfb6d4e81d7..30e62f6372cc3d305366035f087b0074369313f3 100644 (file)
@@ -110,35 +110,35 @@ void
 mi_cmd_exec_next (char *command, char **argv, int argc)
 {
   /* FIXME: Should call a libgdb function, not a cli wrapper.  */
-  return mi_execute_async_cli_command ("next", argv, argc);
+  mi_execute_async_cli_command ("next", argv, argc);
 }
 
 void
 mi_cmd_exec_next_instruction (char *command, char **argv, int argc)
 {
   /* FIXME: Should call a libgdb function, not a cli wrapper.  */
-  return mi_execute_async_cli_command ("nexti", argv, argc);
+  mi_execute_async_cli_command ("nexti", argv, argc);
 }
 
 void
 mi_cmd_exec_step (char *command, char **argv, int argc)
 {
   /* FIXME: Should call a libgdb function, not a cli wrapper.  */
-  return mi_execute_async_cli_command ("step", argv, argc);
+  mi_execute_async_cli_command ("step", argv, argc);
 }
 
 void
 mi_cmd_exec_step_instruction (char *command, char **argv, int argc)
 {
   /* FIXME: Should call a libgdb function, not a cli wrapper.  */
-  return mi_execute_async_cli_command ("stepi", argv, argc);
+  mi_execute_async_cli_command ("stepi", argv, argc);
 }
 
 void
 mi_cmd_exec_finish (char *command, char **argv, int argc)
 {
   /* FIXME: Should call a libgdb function, not a cli wrapper.  */
-  return mi_execute_async_cli_command ("finish", argv, argc);
+  mi_execute_async_cli_command ("finish", argv, argc);
 }
 
 void