Omit useless android_get_image casts

* src/android.c (android_get_image):
Omit useless and confusing casts.
This commit is contained in:
Paul Eggert 2026-05-22 17:32:45 -07:00
parent 4e5103a980
commit ece22174e5

View file

@ -4943,9 +4943,7 @@ android_get_image (android_drawable handle,
if (bitmap_info.format != ANDROID_BITMAP_FORMAT_A_8)
{
if (ckd_mul (&byte_size,
(size_t) bitmap_info.stride,
(size_t) bitmap_info.height))
if (ckd_mul (&byte_size, bitmap_info.stride, bitmap_info.height))
{
ANDROID_DELETE_LOCAL_REF (bitmap);
memory_full_up ();