eio: fix printf format error

This commit is contained in:
Jean Guyomarc'h 2017-03-09 22:18:10 +01:00
parent 9ba17f6902
commit 660259b46d
1 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
#include <config.h>
#endif
#include <inttypes.h>
#include <stdlib.h>
#include <stdio.h>
@ -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);
}