* mi/mi-main.c (mi_cmd_execute): Clean up parenthesis mess from

previous change.
This commit is contained in:
Pedro Alves 2009-01-14 15:21:55 +00:00
parent dc1981d769
commit 041d0fd7f4
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2009-01-14 Pedro Alves <pedro@codesourcery.com>
* mi/mi-main.c (mi_cmd_execute): Clean up parenthesis mess from
previous change.
2009-01-14 Pedro Alves <pedro@codesourcery.com>
* remote.c (extended_remote_mourn_1): Invalidate our notion of

View File

@ -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 ();