Eo: fix warning on printf

This commit is contained in:
Daniel Zaoui 2014-04-10 11:42:54 +03:00
parent 1a48d11fb9
commit 1a895149e7
1 changed files with 1 additions and 1 deletions

View File

@ -347,7 +347,7 @@ _eo_call_stack_resize(Eo_Call_Stack *stack, Eina_Bool grow)
else
next_sz = sz >> 1;
DBG("resize from %lu to %lu", sz, next_sz);
DBG("resize from %lu to %lu", (long unsigned int)sz, (long unsigned int)next_sz);
stack->frames = realloc(stack->frames, next_sz * sizeof(Eo_Stack_Frame));
if(!stack->frames)
{