diff options
author | Tom Hacohen <tom@stosb.com> | 2013-04-11 15:10:42 +0100 |
---|---|---|
committer | Tom Hacohen <tom@stosb.com> | 2013-04-11 17:04:42 +0100 |
commit | 45fdd4574e313986cd11766c4addc60b00e08393 (patch) | |
tree | 5f3a10789472d1d8d0d444b81b1a7ff474d1917c /src | |
parent | 0d68ffbe86ed186b248d506a74100fd551667cc4 (diff) | |
download | efl-45fdd4574e313986cd11766c4addc60b00e08393.tar.gz |
Eo base: Reduce object memory footprint.
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/eo/eo_base_class.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/eo/eo_base_class.c b/src/lib/eo/eo_base_class.c index 331eeca542..01def69dee 100644 --- a/src/lib/eo/eo_base_class.c +++ b/src/lib/eo/eo_base_class.c @@ -19,8 +19,8 @@ typedef struct Eo ***wrefs; Eo_Callback_Description *callbacks; - int walking_list; - int event_freeze_count; + unsigned short walking_list; + unsigned short event_freeze_count; Eina_Bool deletions_waiting : 1; } Private_Data; |