E: Fix uninitialized variable warning.
authorChristopher Michael <cpmichael1@comcast.net>
Wed, 22 Aug 2012 16:06:52 +0000 (16:06 +0000)
committerChristopher Michael <cpmichael1@comcast.net>
Wed, 22 Aug 2012 16:06:52 +0000 (16:06 +0000)
SVN revision: 75557

src/modules/conf_keybindings/e_int_config_keybindings.c

index c9e97f6..083a4e0 100644 (file)
@@ -1004,7 +1004,7 @@ _grab_key_down_cb(void *data,
         E_Config_Binding_Key *bi = NULL;
         Eina_List *l = NULL;
         unsigned int mod = E_BINDING_MODIFIER_NONE;
-        unsigned int n, found;
+        unsigned int n, found = 0;
 
         if (ev->modifiers & ECORE_EVENT_MODIFIER_SHIFT)
           mod |= E_BINDING_MODIFIER_SHIFT;