diff options
author | Jean Guyomarc'h <jean@guyomarch.bzh> | 2017-03-09 22:18:10 +0100 |
---|---|---|
committer | Jean Guyomarc'h <jean@guyomarch.bzh> | 2017-03-09 23:16:16 +0100 |
commit | 660259b46da6b03aa35dd09b146f7f7966fc1b9b (patch) | |
tree | 8f52d32dc7993b0af7c0becb168763b8c5dfac92 | |
parent | 9ba17f6902ebdde417b4d56aedb8663bd09bf2d2 (diff) |
eio: fix printf format error
-rw-r--r-- | src/examples/eio/efl_io_manager_ls.c | 4 |
1 files 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 b1f5ea9a1e..6878cfe4e6 100644 --- a/src/examples/eio/efl_io_manager_ls.c +++ b/src/examples/eio/efl_io_manager_ls.c | |||
@@ -2,7 +2,7 @@ | |||
2 | #include <config.h> | 2 | #include <config.h> |
3 | #endif | 3 | #endif |
4 | 4 | ||
5 | 5 | #include <inttypes.h> | |
6 | #include <stdlib.h> | 6 | #include <stdlib.h> |
7 | #include <stdio.h> | 7 | #include <stdio.h> |
8 | 8 | ||
@@ -20,7 +20,7 @@ void done_cb(void *data, const Efl_Event *ev) | |||
20 | Efl_Future_Event_Success *success = ev->info; | 20 | Efl_Future_Event_Success *success = ev->info; |
21 | uint64_t *count = success->value; | 21 | uint64_t *count = success->value; |
22 | 22 | ||
23 | printf("%s done listing files %i.\n", __FUNCTION__, *count); | 23 | printf("%s done listing files %"PRIu64".\n", __FUNCTION__, *count); |
24 | 24 | ||
25 | leave(data); | 25 | leave(data); |
26 | } | 26 | } |