summaryrefslogtreecommitdiff
path: root/src/glx/glx_error.h
diff options
context:
space:
mode:
authorIan Romanick <ian.d.romanick@intel.com>2011-12-12 09:48:29 -0800
committerIan Romanick <ian.d.romanick@intel.com>2011-12-19 14:55:31 -0800
commitb1ffb3335f629ed43bde44cee789dc9cdb35c306 (patch)
treee4c44c735600d587e4101e7515da0218c52c0878 /src/glx/glx_error.h
parent6f76efa9224f6a1cbe35f419172549abafdd751e (diff)
glx: Make parameter types for __glXSendError match protocol types
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> Reviewed-by: Adam Jackson <ajax@redhat.com> Reviewed-by: Eric Anholt <eric@anholt.net> Cc: Jeremy Huddleston <jeremyhu@apple.com>
Diffstat (limited to 'src/glx/glx_error.h')
-rw-r--r--src/glx/glx_error.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/glx/glx_error.h b/src/glx/glx_error.h
index 6ba2f854dbf..19be38b4425 100644
--- a/src/glx/glx_error.h
+++ b/src/glx/glx_error.h
@@ -27,7 +27,9 @@
prior written authorization.
*/
#include <stdbool.h>
+#include <stdint.h>
#include <X11/Xlib.h>
-void __glXSendError(Display * dpy, int errorCode, unsigned long resourceID,
- unsigned long minorCode, bool coreX11error);
+void __glXSendError(Display * dpy, int_fast8_t errorCode,
+ uint_fast32_t resourceID, uint_fast16_t minorCode,
+ bool coreX11error);