summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRALOVICH, Kristóf <kristof.ralovich@gmail.com>2009-08-11 13:42:47 -0700
committerBrian Paul <brianp@vmware.com>2009-08-11 22:14:35 -0600
commit50f8ca23449af62955dc37695adea2e65696a87b (patch)
tree2887d5c6469b57375faefaa7c0ccd0e106695db7
parentfd90d8000c163498646857b19ef715de3a585f9c (diff)
glx: fix signedness warning
-rw-r--r--src/glx/x11/glxcmds.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glx/x11/glxcmds.c b/src/glx/x11/glxcmds.c
index 820d8b98685..39f10296cc3 100644
--- a/src/glx/x11/glxcmds.c
+++ b/src/glx/x11/glxcmds.c
@@ -1446,7 +1446,7 @@ void __glXClientInfo ( Display *dpy, int opcode )
GLX_MAJOR_VERSION,
GLX_MINOR_VERSION,
size,
- (const uint8_t *)ext_str);
+ ext_str);
#else
xGLXClientInfoReq *req;