evas: use correct format for size_t

SVN revision: 67457
This commit is contained in:
Boris Faure 2012-01-22 19:52:02 +00:00
parent 2b1c8050fb
commit 72165a3f49
1 changed files with 1 additions and 1 deletions

View 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;