Return out of the default case, assert() is removed with -DNDEBUG.

oldstable
Marcus Meissner 2004-10-18 19:36:55 +00:00 committed by Alexandre Julliard
parent 097e281294
commit 1b7f954a41
1 changed files with 6 additions and 2 deletions

View File

@ -273,7 +273,9 @@ static void set_dllmode(HWND dialog, DWORD id)
CONVERT( NATIVE_BUILTIN );
CONVERT( DISABLE );
default: assert( FALSE ); /* should not be reached */
default:
assert( FALSE ); /* should not be reached */
return;
}
#undef CONVERT
@ -290,7 +292,9 @@ static void set_dllmode(HWND dialog, DWORD id)
case BUILTIN_NATIVE: str = "builtin, native"; break;
case NATIVE_BUILTIN: str = "native, builtin"; break;
case DISABLE: str = ""; break;
default: assert( FALSE ); /* unreachable */
default:
assert( FALSE ); /* unreachable */
return;
}
WINE_TRACE("Setting %s to %s\n", dll->name, str);