diff options
| author | Ian Elliott <ian@LunarG.com> | 2015-02-27 11:10:59 -0700 |
|---|---|---|
| committer | Courtney Goeltzenleuchter <courtney@LunarG.com> | 2015-03-02 17:21:11 -0700 |
| commit | e7a46e6eb3a32a28f4e74a8b0e5cbeeae73acc1b (patch) | |
| tree | c72d19e5b8dbcbf613399c59736e94af7d6c9ead /include/XCB | |
| parent | 61a8ce5773bd08c551f90c65ad817566fc0cf861 (diff) | |
| download | usermoji-e7a46e6eb3a32a28f4e74a8b0e5cbeeae73acc1b.tar.xz | |
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).
Diffstat (limited to 'include/XCB')
| -rw-r--r-- | include/XCB/randr.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
