Ecore: ecore_con: fix warning on Windows

SVN revision: 58899
This commit is contained in:
Vincent Torri 2011-04-25 13:10:57 +00:00
parent b3a893c78c
commit 27302831f4
1 changed files with 4 additions and 0 deletions

View File

@ -1719,7 +1719,11 @@ _ecore_con_url_read_cb(void *ptr,
return 0;
}
#ifdef _WIN32
INF("*** We read %Iu bytes from file", retcode);
#else
INF("*** We read %zu bytes from file", retcode);
#endif
return retcode;
}