From 1a895149e76b1e48233575b17451e2ce77690fba Mon Sep 17 00:00:00 2001 From: Daniel Zaoui Date: Thu, 10 Apr 2014 11:42:54 +0300 Subject: [PATCH] Eo: fix warning on printf --- src/lib/eo/eo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/eo/eo.c b/src/lib/eo/eo.c index 8a4c68c..d207f20 100644 --- a/src/lib/eo/eo.c +++ b/src/lib/eo/eo.c @@ -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) { -- 2.7.4