From e7a46e6eb3a32a28f4e74a8b0e5cbeeae73acc1b Mon Sep 17 00:00:00 2001 From: Ian Elliott Date: Fri, 27 Feb 2015 11:10:59 -0700 Subject: Win/glave: Remove new compiler warnings on Windows. Compiling the glvtrace_xgl64.dll library on Windows (see prior commit) resulted in new warnings, some of which seemed serious (e.g. using "sizeof(void)", which is 1 on Linux, with GCC, but is 0 on Windows). --- include/XCB/randr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/XCB/randr.h b/include/XCB/randr.h index b4c101d9..175b9731 100644 --- a/include/XCB/randr.h +++ b/include/XCB/randr.h @@ -2,6 +2,6 @@ #define __RANDR_H typedef void * xcb_randr_provider_t; -typedef void * xcb_randr_crtc_t; +typedef uint32_t xcb_randr_crtc_t; #endif // __RANDR_H -- cgit v1.2.3