commit | a8f8bef09834908329dbbb676017b2c0da95aeae | [log] [tgz] |
---|---|---|
author | Kevin Holbrook <kwh@neosoft.com> | Sun Apr 18 09:33:20 1999 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Sun Apr 18 09:33:20 1999 +0000 |
tree | ecc4e73b9d8eef5a0dec386d23e4ca9247dd6e2d | |
parent | 4ab79f9619e63fec805d96379e1453df7a52216e [diff] [blame] |
Fix ambiguous else warning.
diff --git a/loader/module.c b/loader/module.c index d91b0a6..8ba903c 100644 --- a/loader/module.c +++ b/loader/module.c
@@ -116,16 +116,20 @@ skip = TRUE; if ( type == DLL_PROCESS_ATTACH ) + { if ( wm->flags & WINE_MODREF_PROCESS_ATTACHED ) skip = TRUE; else wm->flags |= WINE_MODREF_PROCESS_ATTACHED; + } if ( type == DLL_PROCESS_DETACH ) + { if ( wm->flags & WINE_MODREF_PROCESS_DETACHED ) skip = TRUE; else wm->flags |= WINE_MODREF_PROCESS_DETACHED; + } if ( !skip ) {