glx/windows: Fix compilation with -Werror-format
authorJon Turney <jon.turney@dronecode.org.uk>
Thu, 6 Jun 2019 15:44:08 +0000 (16:44 +0100)
committerKenneth Graunke <kenneth@whitecape.org>
Fri, 7 Jun 2019 18:28:48 +0000 (11:28 -0700)
Fix compilation where the DWORD type is used with a format, after
-Werror-format added by c9c1e261.

Some Win32 API types are different fundamental types in the 32-bit and
64-bit versions. This problem is then further compounded by the fact
that whilst both 32-bit Cygwin and 32-bit MinGW use the ILP32 data
model, 64-bit MinGW uses the LLP64 data model, but 64-bit Cygwin uses
the LP64 data model. This makes it near impossible to write printf
format specifiers which are correct for all those targets.

In the Win32 API, DWORD is an unsigned, 32-bit type.  So, it is defined
in terms of an unsigned long, except in the LP64 data model used by
64-bit Cygwin, where it is an unsigned int.

It should always be safe to cast it to unsigned int and use %u or %x.

Reviewed-by: Eric Anholt <eric@anholt.net>
src/glx/windows/windows_drawable.c
src/glx/windows/windowsgl.c

index 3d8227d3b7dbd8d88796cb047d4367df458daae0..d1d79572b878b46e1c769ded2f5cabc840416c9e 100644 (file)
@@ -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,
index 56849da837162f52e5d860266fed5f13bd06d589..73366b20ab8d5af17572fdcb54401fab3f31307a 100644 (file)
@@ -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;
       }
    }