From: Mike Blumenkrantz Date: Tue, 10 Nov 2015 19:32:53 +0000 (-0500) Subject: use unsigned int for client focus tracking freeze state X-Git-Tag: upstream/0.20.0~54 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b3d68ee828afe6590ce8ce8e8dd613664515bde8;p=platform%2Fupstream%2Fenlightenment.git use unsigned int for client focus tracking freeze state there's no reason why this should ever be negative --- diff --git a/src/bin/e_client.c b/src/bin/e_client.c index 6673e3e..b305a29 100644 --- a/src/bin/e_client.c +++ b/src/bin/e_client.c @@ -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