diff options
author | 2016-11-11 20:43:19 +0100 | |
---|---|---|
committer | 2016-11-11 20:43:19 +0100 | |
commit | 1efccdd38d4bac6ec44e13f0a6cdf877e3a1c7cb (patch) | |
tree | e1623d63666f8d559c392d316ca2192ab4116e5a /src/lib/util/corefile.cpp | |
parent | 2e49823a06c2955fdd2ca1b1903327730c2b32ef (diff) |
using of IS_ENABLED in files used in tiny build (nw)
Diffstat (limited to 'src/lib/util/corefile.cpp')
-rw-r--r-- | src/lib/util/corefile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/util/corefile.cpp b/src/lib/util/corefile.cpp index 264d80f4113..6272ea120ad 100644 --- a/src/lib/util/corefile.cpp +++ b/src/lib/util/corefile.cpp @@ -663,7 +663,7 @@ bool core_in_memory_file::eof() const { // check for buffered chars if (has_putback()) - return 0; + return false; // if the offset == length, we're at EOF return (m_offset >= m_length); |