diff src/layout_util.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 fa8f7d7396cf
children 8a743884483b
line wrap: on
line diff
--- a/src/layout_util.c	Thu May 22 11:28:35 2008 +0000
+++ b/src/layout_util.c	Thu May 22 13:00:45 2008 +0000
@@ -62,9 +62,9 @@
 	GDK_End,	GDK_KP_End
 };
 
-static gint layout_key_match(guint keyval)
+static gboolean layout_key_match(guint keyval)
 {
-	gint i;
+	guint i;
 
 	for (i = 0; i < sizeof(tree_key_overrides) / sizeof(guint); i++)
 		{