evas: use correct format for size_t
authorBoris Faure <billiob@gmail.com>
Sun, 22 Jan 2012 19:52:02 +0000 (19:52 +0000)
committerBoris Faure <billiob@gmail.com>
Sun, 22 Jan 2012 19:52:02 +0000 (19:52 +0000)
SVN revision: 67457

legacy/evas/src/modules/loaders/xpm/evas_image_load_xpm.c

index c764f6d..8053427 100644 (file)
@@ -153,7 +153,7 @@ evas_image_load_file_xpm(Image_Entry *ie, const char *file, const char *key __UN
    position = 0;
    if (length < 9)
      {
-        ERR("XPM ERROR: file size, %i, is to small", length);
+        ERR("XPM ERROR: file size, %zd, is to small", length);
         eina_file_close(f);
        *error = EVAS_LOAD_ERROR_CORRUPT_FILE;
        return EINA_FALSE;