fs: fix clang-build, os: StackGuardManager

This commit is contained in:
Michael Scire
2022-03-12 15:05:43 -08:00
committed by SciresM
parent be9338eb33
commit cb3d20ef79
13 changed files with 264 additions and 28 deletions

View File

@@ -58,7 +58,7 @@ namespace ams::fssystem {
s64 end_offset;
constexpr bool IsInclude(s64 offset) const {
return this->start_offset <= offset & offset < this->end_offset;
return this->start_offset <= offset && offset < this->end_offset;
}
constexpr bool IsInclude(s64 offset, s64 size) const {