e_menu: use Eina_Bool for one-bit bitfield

Make sure we are using a unsigned var here. Best go with a Eina_Bool directly.
This commit is contained in:
Stefan Schmidt 2015-11-26 18:31:29 +01:00 committed by Mike Blumenkrantz
parent 7da17dc3ed
commit 3f0b2c2373
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ struct _E_Menu
const char *category;
struct {
char visible : 1;
Eina_Bool visible : 1;
int x, y, w, h;
} cur, prev;