comparison 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
comparison
equal deleted inserted replaced
735:df6c11709106 736:a7289f9e8d29
1897 } 1897 }
1898 1898
1899 static void pr_tile_free_space(PixbufRenderer *pr, guint space, ImageTile *it) 1899 static void pr_tile_free_space(PixbufRenderer *pr, guint space, ImageTile *it)
1900 { 1900 {
1901 GList *work; 1901 GList *work;
1902 gint tile_max; 1902 guint tile_max;
1903 1903
1904 work = g_list_last(pr->tiles); 1904 work = g_list_last(pr->tiles);
1905 1905
1906 if (pr->source_tiles_enabled && pr->scale < 1.0) 1906 if (pr->source_tiles_enabled && pr->scale < 1.0)
1907 { 1907 {