mirror of
https://review.haiku-os.org/haiku
synced 2024-11-23 07:18:40 +01:00
bootloader: Range check should be > not >=.
The difference should be harmless here, though.
This commit is contained in:
parent
85d6c163f8
commit
2cac2468d1
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user