From 0088ea42d78fb5c9b05a2a499e24e5972a0af44a Mon Sep 17 00:00:00 2001 From: twinaphex Date: Mon, 8 Jun 2015 00:30:29 +0200 Subject: [PATCH] (libretrodb.c) Change 'int' to 'long' --- libretro-db/libretrodb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libretro-db/libretrodb.c b/libretro-db/libretrodb.c index 20834ac3dd..14c9ca658d 100644 --- a/libretro-db/libretrodb.c +++ b/libretro-db/libretrodb.c @@ -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);