From e70a46c7e3266e38294ac49e97646d99ab4c83a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20Jard=C3=B3n?= Date: Mon, 9 Nov 2009 06:09:40 +0100 Subject: [PATCH] Fix compilation warning: initialize the variable --- gtk/gtkkeyhash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/gtkkeyhash.c b/gtk/gtkkeyhash.c index 298f94c5d6..0bd8f16a2e 100644 --- a/gtk/gtkkeyhash.c +++ b/gtk/gtkkeyhash.c @@ -468,7 +468,7 @@ _gtk_key_hash_lookup (GtkKeyHash *key_hash, * define these keyvals; if yes, discard results because a widget up in * the stack may have an exact match and we don't want to 'steal' it. */ - gint oldkeyval; + guint oldkeyval = 0; GtkKeyHashEntry *keyhashentry; results = sort_lookup_results_by_keyval (results);