Add cast to avoid void * arithmetic warning

This commit is contained in:
Leif Delgass 2003-01-26 22:24:20 +00:00
parent 4fe8f23690
commit 204936f4c7
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 ) {