bootloader: Range check should be > not >=.

The difference should be harmless here, though.
This commit is contained in:
Augustin Cavalier 2024-10-19 10:52:44 -04:00
parent 85d6c163f8
commit 2cac2468d1

View File

@ -368,7 +368,7 @@ ignore_physical_memory_ranges_beyond_4gb()
continue;
}
if ((range.start + range.size) >= kLimit) {
if ((range.start + range.size) > kLimit) {
// the range is partially beyond the limit
dprintf("ignore_physical_memory_ranges_beyond_4gb(): ignoring "
"range: %#" B_PRIx64 " - %#" B_PRIx64 "\n", kLimit,