From 45fdd4574e313986cd11766c4addc60b00e08393 Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Thu, 11 Apr 2013 15:10:42 +0100 Subject: [PATCH] Eo base: Reduce object memory footprint. --- src/lib/eo/eo_base_class.c | 4 ++-- 1 file 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;