From: Ray Strode Date: Wed, 5 Aug 2009 22:08:06 +0000 (-0400) Subject: [frame-buffer] Fix some signedness warnings X-Git-Tag: 0.7.0~72 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b6712a35ca3434c05210af3ccbbf08b365443bfc;p=thirdparty%2Fplymouth.git [frame-buffer] Fix some signedness warnings --- diff --git a/src/libply/ply-frame-buffer.c b/src/libply/ply-frame-buffer.c index e5cf6004..cb72b072 100644 --- a/src/libply/ply-frame-buffer.c +++ b/src/libply/ply-frame-buffer.c @@ -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;