diff src/pixbuf-renderer.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 631d626c1f6b
children ff15a32ad17f
line wrap: on
line diff
--- a/src/pixbuf-renderer.c	Thu May 22 11:28:35 2008 +0000
+++ b/src/pixbuf-renderer.c	Thu May 22 13:00:45 2008 +0000
@@ -1899,7 +1899,7 @@
 static void pr_tile_free_space(PixbufRenderer *pr, guint space, ImageTile *it)
 {
 	GList *work;
-	gint tile_max;
+	guint tile_max;
 
 	work = g_list_last(pr->tiles);