suppress warnings

This commit is contained in:
Yuichi Nishiwaki 2014-01-16 20:08:22 +09:00
parent df313b5bd9
commit 31adf248af
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ file_write(void *cookie, const char *ptr, int size)
static fpos_t
file_seek(void *cookie, fpos_t pos, int whence)
{
return fseek((FILE *)cookie, pos, whence);
return fseek((FILE *)cookie, (long)pos, whence);
}
static int