added missing parens, courtesy of mike nordell

svn path=/trunk/; revision=7104
This commit is contained in:
Vizzini 2003-12-17 22:36:20 +00:00
parent abb4afd9df
commit fd2014a883

View file

@ -99,7 +99,7 @@ int main(int argc, char* argv[])
hMutex = CreateMutexW(NULL, FALSE, L"TestMutex"); hMutex = CreateMutexW(NULL, FALSE, L"TestMutex");
if (hMutex == INVALID_HANDLE_VALUE) if (hMutex == INVALID_HANDLE_VALUE)
{ {
dprintf("CreateMutex() failed! Error: %lu\n", GetLastError); dprintf("CreateMutex() failed! Error: %lu\n", GetLastError());
return 0; return 0;
} }
dprintf("CreateMutex() succeeded!\n"); dprintf("CreateMutex() succeeded!\n");