From 660259b46da6b03aa35dd09b146f7f7966fc1b9b Mon Sep 17 00:00:00 2001 From: Jean Guyomarc'h Date: Thu, 9 Mar 2017 22:18:10 +0100 Subject: [PATCH] eio: fix printf format error --- src/examples/eio/efl_io_manager_ls.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/examples/eio/efl_io_manager_ls.c b/src/examples/eio/efl_io_manager_ls.c index b1f5ea9..6878cfe 100644 --- a/src/examples/eio/efl_io_manager_ls.c +++ b/src/examples/eio/efl_io_manager_ls.c @@ -2,7 +2,7 @@ #include #endif - +#include #include #include @@ -20,7 +20,7 @@ void done_cb(void *data, const Efl_Event *ev) Efl_Future_Event_Success *success = ev->info; uint64_t *count = success->value; - printf("%s done listing files %i.\n", __FUNCTION__, *count); + printf("%s done listing files %"PRIu64".\n", __FUNCTION__, *count); leave(data); } -- 2.7.4