eet: Fix warning in eet file
authorVivek Ellur <vivek.ellur@samsung.com>
Mon, 23 Nov 2015 08:35:07 +0000 (17:35 +0900)
committerJean-Philippe Andre <jp.andre@samsung.com>
Mon, 23 Nov 2015 10:41:30 +0000 (19:41 +0900)
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

src/bin/eet/eet_main.c

index 09ab935..a3652e8 100644 (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);