(libretrodb.c) Change 'int' to 'long'

This commit is contained in:
twinaphex 2015-06-08 00:30:29 +02:00
parent b7a480afec
commit 0088ea42d7

View File

@ -28,7 +28,7 @@ struct node_iter_ctx
static struct rmsgpack_dom_value sentinal;
static inline off_t flseek(FILE *fp, int offset, int whence)
static inline off_t flseek(FILE *fp, long offset, int whence)
{
fseek(fp, offset, whence);
return ftell(fp);