mirror of
https://gitlab.freedesktop.org/plymouth/plymouth.git
synced 2026-05-08 11:19:17 +02:00
[frame-buffer] Fix some signedness warnings
This commit is contained in:
parent
0c257e1d92
commit
b6712a35ca
1 changed files with 2 additions and 2 deletions
|
|
@ -1269,7 +1269,7 @@ ply_frame_buffer_fill_with_argb32_data_at_opacity_with_clip (ply_frame_buffer_t
|
|||
uint32_t *data,
|
||||
double opacity)
|
||||
{
|
||||
long row, column;
|
||||
unsigned long row, column;
|
||||
uint8_t opacity_as_byte;
|
||||
ply_frame_buffer_area_t cropped_area;
|
||||
|
||||
|
|
@ -1380,7 +1380,7 @@ static void
|
|||
animate_at_time (ply_frame_buffer_t *buffer,
|
||||
double time)
|
||||
{
|
||||
int x, y;
|
||||
unsigned int x, y;
|
||||
uint32_t *data;
|
||||
ply_frame_buffer_area_t area;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue