summaryrefslogtreecommitdiffstats
path: root/src/core/Directory.cpp
diff options
context:
space:
mode:
authorerorcun <erorcunerorcun@hotmail.com.tr>2020-12-21 21:26:32 +0100
committererorcun <erorcunerorcun@hotmail.com.tr>2020-12-25 10:54:41 +0100
commita50244dc16085a49f4949cf75f6220320480cebd (patch)
tree34a022c699eed9c8651ddbe8391c985753e46b2b /src/core/Directory.cpp
parentMerge branch 'miami' of github.com:GTAmodding/re3 into miami (diff)
downloadre3-a50244dc16085a49f4949cf75f6220320480cebd.tar
re3-a50244dc16085a49f4949cf75f6220320480cebd.tar.gz
re3-a50244dc16085a49f4949cf75f6220320480cebd.tar.bz2
re3-a50244dc16085a49f4949cf75f6220320480cebd.tar.lz
re3-a50244dc16085a49f4949cf75f6220320480cebd.tar.xz
re3-a50244dc16085a49f4949cf75f6220320480cebd.tar.zst
re3-a50244dc16085a49f4949cf75f6220320480cebd.zip
Diffstat (limited to '')
-rw-r--r--src/core/Directory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/Directory.cpp b/src/core/Directory.cpp
index 05344065..046c999d 100644
--- a/src/core/Directory.cpp
+++ b/src/core/Directory.cpp
@@ -31,7 +31,7 @@ bool
CDirectory::WriteDirFile(const char *filename)
{
int fd;
- size_t n;
+ ssize_t n;
fd = CFileMgr::OpenFileForWriting(filename);
n = CFileMgr::Write(fd, (char*)entries, numEntries*sizeof(DirectoryInfo));
CFileMgr::CloseFile(fd);