From: Pedro Alves Date: Wed, 14 Jan 2009 15:21:55 +0000 (+0000) Subject: * mi/mi-main.c (mi_cmd_execute): Clean up parenthesis mess from X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=041d0fd7f40422a8acc9eae6efbf18d63b2552a0;p=binutils-gdb.git * mi/mi-main.c (mi_cmd_execute): Clean up parenthesis mess from previous change. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index c9c46166928..cbcd0e6b9f3 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2009-01-14 Pedro Alves + + * mi/mi-main.c (mi_cmd_execute): Clean up parenthesis mess from + previous change. + 2009-01-14 Pedro Alves * remote.c (extended_remote_mourn_1): Invalidate our notion of diff --git a/gdb/mi/mi-main.c b/gdb/mi/mi-main.c index f290753beae..b905a9e48ae 100644 --- a/gdb/mi/mi-main.c +++ b/gdb/mi/mi-main.c @@ -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 ();