use unsigned int for client focus tracking freeze state

there's no reason why this should ever be negative
This commit is contained in:
Mike Blumenkrantz 2015-11-10 14:32:53 -05:00
parent e9db26a5a4
commit e54f4fd67f
1 changed files with 3 additions and 2 deletions

View File

@ -22,7 +22,7 @@ E_API int E_EVENT_CLIENT_UNFULLSCREEN = -1;
static Eina_Hash *clients_hash[2] = {NULL}; // pixmap->client
static int focus_track_frozen = 0;
static unsigned int focus_track_frozen = 0;
static int warp_to = 0;
static int warp_to_x = 0;
@ -3379,7 +3379,8 @@ e_client_focus_track_freeze(void)
E_API void
e_client_focus_track_thaw(void)
{
focus_track_frozen--;
if (focus_track_frozen)
focus_track_frozen--;
}
E_API void