Fix printing of size_t value(s). (removes compiler warning).

SVN revision: 44776
This commit is contained in:
Christopher Michael 2009-12-30 02:06:59 +00:00
parent 3a9091b4f5
commit e10a8d3234
1 changed files with 2 additions and 2 deletions

View File

@ -262,7 +262,7 @@ _edje_match_patterns_exec_init_states(Edje_States *states,
\
r = malloc(sizeof (Edje_Patterns) + \
eina_list_count(lst) \
* sizeof (*r->finals) \
* sizeof(*r->finals) \
* sizeof(*r->patterns)); \
if (!r) return NULL; \
\
@ -288,7 +288,7 @@ _edje_match_patterns_exec_init_states(Edje_States *states,
r->patterns[i] = str; \
\
if (Show) \
INF("%li [%s]", i, str); \
INF("%lu [%s]", (unsigned long)i, str); \
\
r->finals[i] = 0; \
for (j = 0; str[j]; ++j) \