]> git.ipfire.org Git - thirdparty/plymouth.git/commitdiff
[frame-buffer] Fix some signedness warnings
authorRay Strode <rstrode@redhat.com>
Wed, 5 Aug 2009 22:08:06 +0000 (18:08 -0400)
committerRay Strode <rstrode@redhat.com>
Wed, 5 Aug 2009 22:08:06 +0000 (18:08 -0400)
src/libply/ply-frame-buffer.c

index e5cf6004174c577b19adc9b5eeb5b53379e20a96..cb72b0729328ff9b7b0b0ee5f3702a6a4e23fff0 100644 (file)
@@ -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;