quartz: Use '%u' to print GetLastError().

This commit is contained in:
Francois Gouget 2007-01-05 13:05:20 +01:00 committed by Alexandre Julliard
parent 4dc5c7aede
commit 4fb03d9091
2 changed files with 4 additions and 4 deletions

View File

@ -245,7 +245,7 @@ static HRESULT WINAPI BaseMemAllocator_Commit(IMemAllocator * iface)
{ {
if (!(This->hSemWaiting = CreateSemaphoreW(NULL, This->pProps->cBuffers, This->pProps->cBuffers, NULL))) if (!(This->hSemWaiting = CreateSemaphoreW(NULL, This->pProps->cBuffers, This->pProps->cBuffers, NULL)))
{ {
ERR("Couldn't create semaphore (error was %d)\n", GetLastError()); ERR("Couldn't create semaphore (error was %u)\n", GetLastError());
hr = HRESULT_FROM_WIN32(GetLastError()); hr = HRESULT_FROM_WIN32(GetLastError());
} }
else else
@ -393,7 +393,7 @@ static HRESULT WINAPI BaseMemAllocator_ReleaseBuffer(IMemAllocator * iface, IMed
/* notify a waiting thread that there is now a free buffer */ /* notify a waiting thread that there is now a free buffer */
if (!ReleaseSemaphore(This->hSemWaiting, 1, NULL)) if (!ReleaseSemaphore(This->hSemWaiting, 1, NULL))
{ {
ERR("ReleaseSemaphore failed with error %d\n", GetLastError()); ERR("ReleaseSemaphore failed with error %u\n", GetLastError());
hr = HRESULT_FROM_WIN32(GetLastError()); hr = HRESULT_FROM_WIN32(GetLastError());
} }
@ -821,7 +821,7 @@ static HRESULT StdMemAllocator_Free(IMemAllocator * iface)
/* free memory */ /* free memory */
if (!VirtualFree(This->pMemory, 0, MEM_RELEASE)) if (!VirtualFree(This->pMemory, 0, MEM_RELEASE))
{ {
ERR("Couldn't free memory. Error: %d\n", GetLastError()); ERR("Couldn't free memory. Error: %u\n", GetLastError());
return HRESULT_FROM_WIN32(GetLastError()); return HRESULT_FROM_WIN32(GetLastError());
} }

View File

@ -156,7 +156,7 @@ static BOOL CreateRenderingWindow(VideoRendererImpl* This)
{ {
if (!RegisterClassA(&winclass)) if (!RegisterClassA(&winclass))
{ {
ERR("Unable to register window %x\n", GetLastError()); ERR("Unable to register window %u\n", GetLastError());
return FALSE; return FALSE;
} }
wnd_class_registered = TRUE; wnd_class_registered = TRUE;