diff options
author | Brian Paul <[email protected]> | 2005-09-02 03:39:31 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-09-02 03:39:31 +0000 |
commit | a02febb8ccc8c716c28c3f6537d2836382f333c2 (patch) | |
tree | d4e39feffed81233f73ed5d5b1da017c3b0b2f76 /src/mesa/drivers | |
parent | a517cc1ef608af537e7462f3d4111b38a1208ca7 (diff) |
change scratch pointer from _int32_t to u_int32_t to silence warning. Is this field actually used for anything?
Diffstat (limited to 'src/mesa/drivers')
-rw-r--r-- | src/mesa/drivers/dri/r200/r200_screen.h | 2 |
1 files changed, 1 insertions, 1 deletions
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; |