diff options
author | Lioncash <mathew1800@gmail.com> | 2018-08-24 02:20:00 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-08-24 02:20:02 -0400 |
commit | c74b7ee204853413813d06e4ae008639b4f12118 (patch) | |
tree | 800fb32b58060e923e8af897d4e52ce68f0a35b1 /src/common/file_util.cpp | |
parent | 165c23c84844707249449826a8a18c25877e784b (diff) |
file_util: Correct return value in early exit of ReadFileToString()
While still essentially being zero, we should be returning a numeric
value here, not a boolean typed value.
Diffstat (limited to 'src/common/file_util.cpp')
-rw-r--r-- | src/common/file_util.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/file_util.cpp b/src/common/file_util.cpp index b30a67ff99..baa7214811 100644 --- a/src/common/file_util.cpp +++ b/src/common/file_util.cpp @@ -764,7 +764,7 @@ size_t ReadFileToString(bool text_file, const char* filename, std::string& str) IOFile file(filename, text_file ? "r" : "rb"); if (!file.IsOpen()) - return false; + return 0; str.resize(static_cast<u32>(file.GetSize())); return file.ReadArray(&str[0], str.size()); |