Fixed misplaced 'else.' -owt

This commit is contained in:
Owen Taylor 1998-03-14 07:29:32 +00:00
parent 54a9eb416d
commit b8e7ea1f11
2 changed files with 4 additions and 2 deletions

View File

@ -338,8 +338,9 @@ gdk_init (int *argc,
i += 1;
}
}
else
#endif /* G_ENABLE_DEBUG */
else if (strcmp ("--display", (*argv)[i]) == 0)
if (strcmp ("--display", (*argv)[i]) == 0)
{
(*argv)[i] = NULL;

View File

@ -338,8 +338,9 @@ gdk_init (int *argc,
i += 1;
}
}
else
#endif /* G_ENABLE_DEBUG */
else if (strcmp ("--display", (*argv)[i]) == 0)
if (strcmp ("--display", (*argv)[i]) == 0)
{
(*argv)[i] = NULL;