mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
added missing parens, courtesy of mike nordell
svn path=/trunk/; revision=7104
This commit is contained in:
parent
abb4afd9df
commit
fd2014a883
1 changed files with 1 additions and 1 deletions
|
@ -99,7 +99,7 @@ int main(int argc, char* argv[])
|
|||
hMutex = CreateMutexW(NULL, FALSE, L"TestMutex");
|
||||
if (hMutex == INVALID_HANDLE_VALUE)
|
||||
{
|
||||
dprintf("CreateMutex() failed! Error: %lu\n", GetLastError);
|
||||
dprintf("CreateMutex() failed! Error: %lu\n", GetLastError());
|
||||
return 0;
|
||||
}
|
||||
dprintf("CreateMutex() succeeded!\n");
|
||||
|
|
Loading…
Reference in a new issue