diff options
author | Matthieu Herrb <[email protected]> | 2009-01-11 16:56:34 -0700 |
---|---|---|
committer | Brian <[email protected]> | 2009-01-11 16:56:34 -0700 |
commit | 436024561aa6d78f78601f690803bd3845d225e7 (patch) | |
tree | 3d91b041e0197ddfd8a23c9aed765983ad02422e /src/glx/x11/drisw_glx.c | |
parent | 0f0922f93cbe997a95575c955ab1544bb5cd1d7d (diff) |
Build fixes for gcc 2.95
Diffstat (limited to 'src/glx/x11/drisw_glx.c')
-rw-r--r-- | src/glx/x11/drisw_glx.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/glx/x11/drisw_glx.c b/src/glx/x11/drisw_glx.c index fee45952b38..35bbd9151ca 100644 --- a/src/glx/x11/drisw_glx.c +++ b/src/glx/x11/drisw_glx.c @@ -113,7 +113,7 @@ swrastGetDrawableInfo(__DRIdrawable * draw, int *x, int *y, int *w, int *h, void *loaderPrivate) { __GLXDRIdrawablePrivate *pdp = loaderPrivate; - __GLXDRIdrawable *pdraw = &(pdp->base);; + __GLXDRIdrawable *pdraw = &(pdp->base); Display *dpy = pdraw->psc->dpy; Drawable drawable; @@ -141,7 +141,7 @@ swrastPutImage(__DRIdrawable * draw, int op, int x, int y, int w, int h, char *data, void *loaderPrivate) { __GLXDRIdrawablePrivate *pdp = loaderPrivate; - __GLXDRIdrawable *pdraw = &(pdp->base);; + __GLXDRIdrawable *pdraw = &(pdp->base); Display *dpy = pdraw->psc->dpy; Drawable drawable; XImage *ximage; @@ -176,7 +176,7 @@ swrastGetImage(__DRIdrawable * draw, int x, int y, int w, int h, char *data, void *loaderPrivate) { __GLXDRIdrawablePrivate *pdp = loaderPrivate; - __GLXDRIdrawable *pdraw = &(pdp->base);; + __GLXDRIdrawable *pdraw = &(pdp->base); Display *dpy = pdraw->psc->dpy; Drawable drawable; XImage *ximage; |