2009-01-14 Pedro Alves * mi/mi-main.c (mi_cmd_execute): Clean up parenthesis mess from previous change. --- gdb/mi/mi-main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Index: src/gdb/mi/mi-main.c =================================================================== --- src.orig/gdb/mi/mi-main.c 2009-01-14 15:16:04.000000000 +0000 +++ src/gdb/mi/mi-main.c 2009-01-14 15:16:53.000000000 +0000 @@ -1352,11 +1352,11 @@ mi_cmd_execute (struct mi_parse *parse) { if (target_can_async_p () && target_has_execution - && (is_exited (inferior_ptid)) + && is_exited (inferior_ptid) && (strcmp (parse->command, "thread-info") != 0 && strcmp (parse->command, "thread-list-ids") != 0 - && strcmp (parse->command, "thread-select") != 0) - && strcmp (parse->command, "list-thread-groups") != 0) + && strcmp (parse->command, "thread-select") != 0 + && strcmp (parse->command, "list-thread-groups") != 0)) { struct ui_file *stb; stb = mem_fileopen ();