evas: removing unwanted operation in interface create

Summary: Signed-off-by: Godly T.Alias <godlytalias@yahoo.co.in>

Reviewers: cedric, raster, rajeshps, prince.dubey

Reviewed By: cedric

Subscribers: jpeg

Differential Revision: https://phab.enlightenment.org/D5288

Signed-off-by: Cedric Bail <cedric@osg.samsung.com>
This commit is contained in:
Godly T.Alias 2017-10-13 11:59:43 -07:00 committed by Cedric Bail
parent 3ad9ac8926
commit 295403769b
1 changed files with 1 additions and 2 deletions

View File

@ -255,7 +255,7 @@ _evas_smart_class_callbacks_create(Evas_Smart *s)
static void
_evas_smart_class_interfaces_create(Evas_Smart *s)
{
unsigned int i, total_priv_sz = 0;
unsigned int i;
const Evas_Smart_Class *sc;
/* get number of interfaces on the smart */
@ -278,7 +278,6 @@ _evas_smart_class_interfaces_create(Evas_Smart *s)
if (size % sizeof(void *) != 0)
size += sizeof(void *) - (size % sizeof(void *));
total_priv_sz += size;
}
ifaces_array++;