Commit 42cad0eb authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

ntdll/tests: Use WAIT_OBJECT_0 instead of 0.

parent b126d7c7
......@@ -81,7 +81,7 @@ static NTSTATUS (WINAPI *pNtQueryVolumeInformationFile)(HANDLE,PIO_STATUS_BLOCK,
static inline BOOL is_signaled( HANDLE obj )
{
return WaitForSingleObject( obj, 0 ) == 0;
return WaitForSingleObject( obj, 0 ) == WAIT_OBJECT_0;
}
#define PIPENAME "\\\\.\\pipe\\ntdll_tests_file.c"
......
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