inkobj: Remove break after return. Found by Smatch.
This commit is contained in:
parent
6eb90d87fb
commit
66d27c2b08
|
@ -38,7 +38,6 @@ BOOL WINAPI DllMain(HINSTANCE hinst, DWORD reason, LPVOID reserved)
|
||||||
{
|
{
|
||||||
case DLL_WINE_PREATTACH:
|
case DLL_WINE_PREATTACH:
|
||||||
return FALSE; /* prefer native version */
|
return FALSE; /* prefer native version */
|
||||||
break;
|
|
||||||
case DLL_PROCESS_ATTACH:
|
case DLL_PROCESS_ATTACH:
|
||||||
DisableThreadLibraryCalls( hinst );
|
DisableThreadLibraryCalls( hinst );
|
||||||
INKOBJ_hInstance = hinst;
|
INKOBJ_hInstance = hinst;
|
||||||
|
|
Loading…
Reference in New Issue