summaryrefslogtreecommitdiffstats
path: root/src/FileMgr.cpp
diff options
context:
space:
mode:
authoraap <aap@papnet.eu>2019-06-13 11:57:43 +0200
committeraap <aap@papnet.eu>2019-06-13 11:57:43 +0200
commitb4afb591a7465220ca40811924645932f568f319 (patch)
treedd4dd150905f99df9288c4f6f6babfbab0e0922b /src/FileMgr.cpp
parentMerge pull request #12 from Fire-Head/master (diff)
downloadre3-b4afb591a7465220ca40811924645932f568f319.tar
re3-b4afb591a7465220ca40811924645932f568f319.tar.gz
re3-b4afb591a7465220ca40811924645932f568f319.tar.bz2
re3-b4afb591a7465220ca40811924645932f568f319.tar.lz
re3-b4afb591a7465220ca40811924645932f568f319.tar.xz
re3-b4afb591a7465220ca40811924645932f568f319.tar.zst
re3-b4afb591a7465220ca40811924645932f568f319.zip
Diffstat (limited to 'src/FileMgr.cpp')
-rw-r--r--src/FileMgr.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/FileMgr.cpp b/src/FileMgr.cpp
index 02c797ba..d4e0b89b 100644
--- a/src/FileMgr.cpp
+++ b/src/FileMgr.cpp
@@ -163,8 +163,8 @@ myfseek(int fd, long offset, int whence)
static int
myfeof(int fd)
{
-// return feof(myfiles[fd].file);
- return ferror(myfiles[fd].file);
+ return feof(myfiles[fd].file);
+// return ferror(myfiles[fd].file);
}