diff options
Diffstat (limited to 'src/glx')
-rw-r--r-- | src/glx/windows/windows_drawable.c | 6 | ||||
-rw-r--r-- | src/glx/windows/windowsgl.c | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/glx/windows/windows_drawable.c b/src/glx/windows/windows_drawable.c index 3d8227d3b7d..d1d79572b87 100644 --- a/src/glx/windows/windows_drawable.c +++ b/src/glx/windows/windows_drawable.c @@ -124,10 +124,10 @@ windows_create_drawable(int type, void *handle) d->callbacks = &pixmap_callbacks; // Access file mapping object by a name - snprintf(name, sizeof(name), "Local\\CYGWINX_WINDOWSDRI_%08lx", (uintptr_t)handle); + snprintf(name, sizeof(name), "Local\\CYGWINX_WINDOWSDRI_%08x", (unsigned int)(uintptr_t)handle); d->hSection = OpenFileMapping(FILE_MAP_ALL_ACCESS, FALSE, name); if (!d->hSection) - printf("OpenFileMapping failed %x\n", GetLastError()); + printf("OpenFileMapping failed %x\n", (int)GetLastError()); // Create a screen-compatible DC d->dibDC = CreateCompatibleDC(NULL); @@ -135,7 +135,7 @@ windows_create_drawable(int type, void *handle) // Map the shared memory section to access the BITMAPINFOHEADER pBmpHeader = (BITMAPINFOHEADER *)MapViewOfFile(d->hSection, FILE_MAP_ALL_ACCESS, 0, 0, sizeof(BITMAPINFOHEADER)); if (!pBmpHeader) - printf("MapViewOfFile failed %x\n", GetLastError()); + printf("MapViewOfFile failed %x\n", (int)GetLastError()); // Create a DIB using the file mapping d->hDIB = CreateDIBSection(d->dibDC, (BITMAPINFO *) pBmpHeader, diff --git a/src/glx/windows/windowsgl.c b/src/glx/windows/windowsgl.c index 56849da8371..73366b20ab8 100644 --- a/src/glx/windows/windowsgl.c +++ b/src/glx/windows/windowsgl.c @@ -217,7 +217,7 @@ int windows_bind_context(windowsContext *context, windowsDrawable *draw, windows read->callbacks->releasedc(read, readDc); if (!ret) { - printf("wglMakeContextCurrentARB error: %08x\n", GetLastError()); + printf("wglMakeContextCurrentARB error: %08x\n", (int)GetLastError()); return FALSE; } } @@ -226,7 +226,7 @@ int windows_bind_context(windowsContext *context, windowsDrawable *draw, windows /* Otherwise, just use wglMakeCurrent */ BOOL ret = wglMakeCurrent(drawDc, context->ctx); if (!ret) { - printf("wglMakeCurrent error: %08x\n", GetLastError()); + printf("wglMakeCurrent error: %08x\n", (int)GetLastError()); return FALSE; } } |