Formatting

This commit is contained in:
wheremyfoodat 2023-07-09 00:50:16 +03:00
parent b2c6a5e801
commit 5e8f324ff5
2 changed files with 4 additions and 4 deletions

View file

@ -46,7 +46,7 @@ public:
OptionalRef findFromAddress(u32 address) {
for (auto& e : buffer) {
if (e.location <= address && e.location+e.sizeInBytes() > address && e.valid)
if (e.location <= address && e.location + e.sizeInBytes() > address && e.valid)
return e;
}