summaryrefslogtreecommitdiff
path: root/src/glx
diff options
context:
space:
mode:
authorThierry Reding <thierry@gilfi.de>2006-12-01 00:16:33 +0000
committerThierry Reding <thierry@gilfi.de>2006-12-01 00:16:33 +0000
commit017bade93c5519f3c38617185714495c4a7fad89 (patch)
treee6674ac9177805b0506d94cb70caf8ccf62fb338 /src/glx
parentc9c79e7cae4867656343cfe457ab531f700c616a (diff)
Update to latest upstream release candidate (6.5.2 RC3).
Diffstat (limited to 'src/glx')
-rw-r--r--src/glx/x11/XF86dri.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/glx/x11/XF86dri.c b/src/glx/x11/XF86dri.c
index 0ce588276be..8909a047721 100644
--- a/src/glx/x11/XF86dri.c
+++ b/src/glx/x11/XF86dri.c
@@ -203,7 +203,7 @@ PUBLIC Bool XF86DRIOpenConnection(dpy, screen, hSAREA, busIdString)
*hSAREA = rep.hSAREALow;
if (sizeof(drm_handle_t) == 8) {
- const int shift = 32; /* var to prevent warning on next line */
+ int shift = 32; /* var to prevent warning on next line */
*hSAREA |= ((drm_handle_t) rep.hSAREAHigh) << shift;
}
@@ -566,7 +566,7 @@ PUBLIC Bool XF86DRIGetDeviceInfo(dpy, screen, hFrameBuffer,
*hFrameBuffer = rep.hFrameBufferLow;
if (sizeof(drm_handle_t) == 8) {
- const int shift = 32; /* var to prevent warning on next line */
+ int shift = 32; /* var to prevent warning on next line */
*hFrameBuffer |= ((drm_handle_t) rep.hFrameBufferHigh) << shift;
}