use size_t instead of int

SVN revision: 42640
This commit is contained in:
Vincent Torri 2009-09-23 06:45:39 +00:00
parent ac44ab5449
commit cefbd7abf5
1 changed files with 3 additions and 3 deletions

View File

@ -708,10 +708,10 @@ evas_cache_image_request(Evas_Cache_Image *cache, const char *file, const char *
char *hkey;
Image_Entry *im;
Evas_Image_Load_Opts prevent = { 0, 0, 0, 0, 0, 0, 0, 0 };
int size;
size_t size;
int stat_done = 0;
int file_length;
int key_length;
size_t file_length;
size_t key_length;
struct stat st;
assert(cache != NULL);