Fix build on clang

Signed-off-by: Yuxuan Shui <yshuiv7@gmail.com>
This commit is contained in:
Yuxuan Shui 2020-02-08 19:15:10 +00:00
parent 51034249cc
commit 499b49eb03
No known key found for this signature in database
GPG Key ID: 37C999F617EA1A47
1 changed files with 1 additions and 1 deletions

View File

@ -247,7 +247,7 @@ bool build_shadow(xcb_connection_t *c, xcb_drawable_t d, double opacity, const i
} }
uint32_t offset = row * shadow_image->stride / sizeof(*shadow_image->data); uint32_t offset = row * shadow_image->stride / sizeof(*shadow_image->data);
xcb_put_image(c, shadow_image->format, shadow_pixmap, gc, xcb_put_image(c, (uint8_t)shadow_image->format, shadow_pixmap, gc,
shadow_image->width, batch_height, 0, to_i16_checked(row), shadow_image->width, batch_height, 0, to_i16_checked(row),
0, shadow_image->depth, shadow_image->stride * batch_height, 0, shadow_image->depth, shadow_image->stride * batch_height,
shadow_image->data + offset); shadow_image->data + offset);