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
parent d18e169701
commit 9365129a5a
1 changed files with 1 additions and 1 deletions

View File

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