Use proper index to select mask in _ecore_xcb_key_mask_get

SVN revision: 43607
This commit is contained in:
Mikhail Gusarov 2009-11-10 22:15:00 +00:00
parent a431b7c99d
commit a704b35961
1 changed files with 1 additions and 1 deletions

View File

@ -982,7 +982,7 @@ _ecore_xcb_key_mask_get(xcb_keysym_t sym)
{
int mask;
mask = masks[i];
mask = masks[j];
free(reply);
xcb_key_symbols_free(symbols);
return mask;