clang format fix

This commit is contained in:
georgemoralis 2024-07-29 14:05:59 +03:00
parent e6173dc5da
commit 86ec760ace
1 changed files with 1 additions and 1 deletions

View File

@ -188,7 +188,7 @@ int MemoryManager::MapFile(void** out_addr, VAddr virtual_addr, size_t size, Mem
// Find first free area to map the file.
if (False(flags & MemoryMapFlags::Fixed)) {
mapped_addr = SearchFree(mapped_addr, size_aligned,1);
mapped_addr = SearchFree(mapped_addr, size_aligned, 1);
}
if (True(flags & MemoryMapFlags::Fixed)) {