summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/common/dri_util.c
diff options
context:
space:
mode:
authorDave Airlie <airliedfreedesktop.org>2005-02-14 09:27:38 +0000
committerDave Airlie <airliedfreedesktop.org>2005-02-14 09:27:38 +0000
commit8d12a6d537ca346291bc3e3bc90cc73509f4b419 (patch)
tree65e93d5c0717c2fa23f73a12345be148231fa0bd /src/mesa/drivers/dri/common/dri_util.c
parentfbdd7a5e7487849bfe06a7bef68b4dad75f5d58c (diff)
fix some signed vs unsigned warnings
Diffstat (limited to 'src/mesa/drivers/dri/common/dri_util.c')
-rw-r--r--src/mesa/drivers/dri/common/dri_util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/common/dri_util.c b/src/mesa/drivers/dri/common/dri_util.c
index a4de0b6496..302994e0c2 100644
--- a/src/mesa/drivers/dri/common/dri_util.c
+++ b/src/mesa/drivers/dri/common/dri_util.c
@@ -1573,7 +1573,7 @@ __driUtilCreateScreen(Display *dpy, int scrn, __DRIscreen *psc,
*
* \sa __glXGetInternalVersion().
*/
-int driCompareGLXAPIVersion( GLuint required_version )
+int driCompareGLXAPIVersion( GLint required_version )
{
if ( api_ver > required_version ) {
return 1;