Commit b14fb331 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

mmdevapi: Avoid a TRUE:FALSE conditional expression.

parent d45070d4
...@@ -163,7 +163,7 @@ static BOOL init_driver(void) ...@@ -163,7 +163,7 @@ static BOOL init_driver(void)
*next = ','; *next = ',';
} }
return drvs.module ? TRUE : FALSE; return drvs.module != 0;
} }
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment