X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;ds=sidebyside;f=images%2Fimage-test.c;h=043da30a29bc15c68eea31ad6ffb89b7d3c0f3e5;hb=c15baf7b8cf0dc6a07b3c57ad346aee68ac6f19f;hp=0a22d47907abcf648d605316943e9a0e461e098d;hpb=35ff0ce2ea1801d5c42566b13d2e3a68452f6f3e;p=libucw.git diff --git a/images/image-test.c b/images/image-test.c index 0a22d479..043da30a 100644 --- a/images/image-test.c +++ b/images/image-test.c @@ -64,7 +64,7 @@ test_image_iface(void) ASSERT(i1->pixel_size == 4); ASSERT(IMAGE_SSE_ALIGN_SIZE >= 16); ASSERT(!(i1->row_size & (IMAGE_SSE_ALIGN_SIZE - 1))); - ASSERT(!((addr_int_t)i1->pixels & (IMAGE_SSE_ALIGN_SIZE - 1))); + ASSERT(!((uintptr_t)i1->pixels & (IMAGE_SSE_ALIGN_SIZE - 1))); image_destroy(i1); i1 = image_new(&ctx, 283, 329, COLOR_SPACE_RGB, NULL);