Add cast to avoid void * arithmetic warning

main
Leif Delgass 2003-01-26 22:25:35 +00:00
parent 66f57c403c
commit 9b9b099471
2 changed files with 2 additions and 2 deletions

View File

@ -1159,7 +1159,7 @@ static int radeon_cp_dispatch_texture( drm_device_t *dev,
/* Update the input parameters for next time */
image->y += height;
image->height -= height;
image->data += size;
image->data = (const u8 *)image->data + size;
buf = radeon_freelist_get( dev );
if ( 0 && !buf ) {

View File

@ -1159,7 +1159,7 @@ static int radeon_cp_dispatch_texture( drm_device_t *dev,
/* Update the input parameters for next time */
image->y += height;
image->height -= height;
image->data += size;
image->data = (const u8 *)image->data + size;
buf = radeon_freelist_get( dev );
if ( 0 && !buf ) {