ntdll/tests: Use WAIT_OBJECT_0 instead of 0.

This commit is contained in:
Dmitry Timoshkov 2013-08-23 15:03:45 +09:00 committed by Alexandre Julliard
parent b126d7c7ce
commit 42cad0ebb1
1 changed files with 1 additions and 1 deletions

View File

@ -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"