E: Fix uninitialized variable warning.

SVN revision: 75557
This commit is contained in:
Christopher Michael 2012-08-22 16:06:52 +00:00
parent 9737c38fb8
commit 8448ace4a9
1 changed files with 1 additions and 1 deletions

View 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;