vfs: Add unreachable assert to file permissions converter

This commit is contained in:
Zach Hilman 2018-08-03 11:50:27 -04:00
parent 2de2ec25d6
commit aaa8fdea52
1 changed files with 3 additions and 1 deletions

View File

@ -6,7 +6,7 @@
#include <cstddef>
#include <iterator>
#include <utility>
#include "common/assert.h"
#include "common/common_paths.h"
#include "common/logging/log.h"
#include "core/file_sys/vfs_real.h"
@ -29,6 +29,8 @@ static std::string ModeFlagsToString(Mode mode) {
mode_str = "a";
else if (mode & Mode::Write)
mode_str = "w";
else
UNREACHABLE_MSG("Invalid file open mode: {:02X}", static_cast<u8>(mode));
}
mode_str += "b";