From 08248ed13d23255f769277c539c76ab6302b70b4 Mon Sep 17 00:00:00 2001 From: zagor Date: Mon, 24 Jan 2005 07:37:07 +0000 Subject: [PATCH] Fixed red build... git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5648 a1c6a512-1295-4272-9138-f99709370657 --- uisimulator/common/io.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uisimulator/common/io.c b/uisimulator/common/io.c index cb8064c7d..6335735f8 100644 --- a/uisimulator/common/io.c +++ b/uisimulator/common/io.c @@ -227,7 +227,7 @@ int sim_rename(const char *oldpath, const char* newpath) return -1; } -int sim_filesize(int fd) +off_t sim_filesize(int fd) { int old = lseek(fd, 0, SEEK_CUR); int size = lseek(fd, 0, SEEK_END); -- 2.11.4.GIT