mirror of
https://gitlab.freedesktop.org/plymouth/plymouth.git
synced 2026-05-08 14:48:01 +02:00
Fix signedness issue in fb area_intersect code
This commit is contained in:
parent
088b03a414
commit
4cd8fd2d01
1 changed files with 1 additions and 1 deletions
|
|
@ -690,7 +690,7 @@ ply_frame_buffer_area_intersect (ply_frame_buffer_area_t *area1,
|
|||
ply_frame_buffer_area_t *area2,
|
||||
ply_frame_buffer_area_t *result)
|
||||
{
|
||||
unsigned long x1, y1, x2, y2;
|
||||
long x1, y1, x2, y2;
|
||||
long width, height;
|
||||
|
||||
if (area1->width == 0)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue