eet: Fix warning in eet file

Summary:
variable 'total' is of unsigned long long but %lli was used to print..so fixed
warning

Signed-off-by: Vivek Ellur <vivek.ellur@samsung.com>

Reviewers: cedric, jpeg

Reviewed By: jpeg

Subscribers: cedric

Differential Revision: https://phab.enlightenment.org/D3325
This commit is contained in:
Vivek Ellur 2015-11-23 17:35:07 +09:00 committed by Jean-Philippe Andre
parent bcf38c5817
commit 0ddd0129ea
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ do_eet_list(const char *file, Eina_Bool verbose)
if (verbose)
{
printf("*** ***\n");
printf("Total payload size : %lli.\n", total);
printf("Total payload size : %llu.\n", total);
}
eet_close(ef);