stefan pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=d18e1697013a0c3720d8aab00fc88a3d4972d528

commit d18e1697013a0c3720d8aab00fc88a3d4972d528
Author: Stefan Schmidt <ste...@osg.samsung.com>
Date:   Thu Nov 26 18:31:02 2015 +0100

    e_gadcon: use Eina_Bool for one-bit bitfield
    
    Make sure we are using a unsigned var here. Best go with a Eina_Bool 
directly.
---
 src/bin/e_gadcon.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/bin/e_gadcon.h b/src/bin/e_gadcon.h
index e709ed7..b95ae7f 100644
--- a/src/bin/e_gadcon.h
+++ b/src/bin/e_gadcon.h
@@ -194,7 +194,7 @@ struct _E_Gadcon_Client
       int seq, flags;   /* goes to save */
       int state, resist;
       int prev_pos, prev_size;
-      int want_save : 1;
+      Eina_Bool want_save : 1;
    } state_info;
 
    struct

-- 


Reply via email to