From: Brian Paul Date: Fri, 2 Sep 2005 03:39:31 +0000 (+0000) Subject: change scratch pointer from _int32_t to u_int32_t to silence warning. Is this field... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a02febb8ccc8c716c28c3f6537d2836382f333c2;p=mesa.git change scratch pointer from _int32_t to u_int32_t to silence warning. Is this field actually used for anything? --- diff --git a/src/mesa/drivers/dri/r200/r200_screen.h b/src/mesa/drivers/dri/r200/r200_screen.h index 91b43cbd759..eb887974b96 100644 --- a/src/mesa/drivers/dri/r200/r200_screen.h +++ b/src/mesa/drivers/dri/r200/r200_screen.h @@ -86,7 +86,7 @@ typedef struct { drmBufMapPtr buffers; - __volatile__ int32_t *scratch; + __volatile__ u_int32_t *scratch; /* is this used for anything? */ __DRIscreenPrivate *driScreen; unsigned int sarea_priv_offset;