From 735fd14ea450d824fde280517ea23b60142b00cf Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Mon, 14 Aug 2017 21:17:22 -0400 Subject: [PATCH] Whoops, patched to compile. --- src/physfs_internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/physfs_internal.h b/src/physfs_internal.h index 58fe6c8c..8b221ab5 100644 --- a/src/physfs_internal.h +++ b/src/physfs_internal.h @@ -334,7 +334,7 @@ PHYSFS_Io *__PHYSFS_createMemoryIo(const void *buf, PHYSFS_uint64 len, * Read (len) bytes from (io) into (buf). Returns non-zero on success, * zero on i/o error. Literally: "return (io->read(io, buf, len) == len);" */ -int __PHYSFS_readAll(PHYSFS_Io *io, void *buf, const PHYSFS_uint64 len); +int __PHYSFS_readAll(PHYSFS_Io *io, void *buf, const size_t len); /* These are shared between some archivers. */