diff options
Diffstat (limited to 'src/core/FileMgr.h')
-rw-r--r-- | src/core/FileMgr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/FileMgr.h b/src/core/FileMgr.h index 0ad9daa7..51e30694 100644 --- a/src/core/FileMgr.h +++ b/src/core/FileMgr.h @@ -13,8 +13,8 @@ public: static int OpenFile(const char *file, const char *mode); static int OpenFile(const char *file) { return OpenFile(file, "rb"); } static int OpenFileForWriting(const char *file); - static size_t Read(int fd, const char *buf, int len); - static size_t Write(int fd, const char *buf, int len); + static size_t Read(int fd, const char *buf, size_t len); + static size_t Write(int fd, const char *buf, size_t len); static bool Seek(int fd, int offset, int whence); static bool ReadLine(int fd, char *buf, int len); static int CloseFile(int fd); |