diff src/ui_spinner.c @ 736:a7289f9e8d29

Fix signed vs unsigned warnings. In most cases, gint was used instead of guint.
author zas_
date Thu, 22 May 2008 13:00:45 +0000
parents fbebf5cf4a55
children 1646720364cf
line wrap: on
line diff
--- a/src/ui_spinner.c	Thu May 22 11:28:35 2008 +0000
+++ b/src/ui_spinner.c	Thu May 22 13:00:45 2008 +0000
@@ -41,11 +41,11 @@
 struct _SpinnerData {
 	GtkWidget *image;
 	GList *list;		/* list of pixbufs */
-	gint frame;
+	guint frame;
 	gint timer_id;
 };
 
-static void spinner_set_frame(SpinnerData *sp, gint frame)
+static void spinner_set_frame(SpinnerData *sp, guint frame)
 {
 	GdkPixbuf *pb;