to use uint8_t for color.
+2013-12-21 Vladimir Serbinenko <phcoder@gmail.com>
+
+ * include/grub/video.h (grub_video_rgba_color_rgb): Fix prototype
+ to use uint8_t for color.
+
2013-12-21 Vladimir Serbinenko <phcoder@gmail.com>
* util/misc.c (grub_util_get_image_size): Check for overflow.
grub_video_driver_id_t EXPORT_FUNC (grub_video_get_driver_id) (void);
static __inline grub_video_rgba_color_t
-grub_video_rgba_color_rgb (int r, int g, int b)
+grub_video_rgba_color_rgb (grub_uint8_t r, grub_uint8_t g, grub_uint8_t b)
{
grub_video_rgba_color_t c;
c.red = r;