diff options
author | Pauli Nieminen <[email protected]> | 2012-06-12 21:38:51 +0300 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2012-08-01 15:31:16 -0700 |
commit | 10169e7adc40b445776453fcc6d3227d7dda5879 (patch) | |
tree | 6b3f5852f10017e1105be84735854697b19e9d73 /src/mesa | |
parent | 54808e560f773f652919a2865c7371e4715df510 (diff) |
radeon: Fix printf format not to warn in 64bit
When I build tested radeon changes I noticed two warnings about format
size missmatch in 64bit. I decided to clean them to make relevant
compiler warnings easier to spot.
Signed-off-by: Pauli Nieminen <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/radeon/radeon_blit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/radeon/radeon_blit.c b/src/mesa/drivers/dri/radeon/radeon_blit.c index b4932a255aa..2d4a2d67be4 100644 --- a/src/mesa/drivers/dri/radeon/radeon_blit.c +++ b/src/mesa/drivers/dri/radeon/radeon_blit.c @@ -390,13 +390,13 @@ unsigned r100_blit(struct gl_context *ctx, } if (0) { - fprintf(stderr, "src: size [%d x %d], pitch %d, offset %d " + fprintf(stderr, "src: size [%d x %d], pitch %d, offset %zd " "offset [%d x %d], format %s, bo %p\n", src_width, src_height, src_pitch, src_offset, src_x_offset, src_y_offset, _mesa_get_format_name(src_mesaformat), src_bo); - fprintf(stderr, "dst: pitch %d offset %d, offset[%d x %d], format %s, bo %p\n", + fprintf(stderr, "dst: pitch %d offset %zd, offset[%d x %d], format %s, bo %p\n", dst_pitch, dst_offset, dst_x_offset, dst_y_offset, _mesa_get_format_name(dst_mesaformat), dst_bo); fprintf(stderr, "region: %d x %d\n", reg_width, reg_height); |