mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-30 04:10:54 -08:00
Fix assertion in bootblockcheck.
Copied from Perforce Change: 186204 ServerID: perforce.ravenbrook.com
This commit is contained in:
parent
f2c4505d22
commit
0274929d35
1 changed files with 1 additions and 1 deletions
|
|
@ -30,7 +30,7 @@ Bool BootBlockCheck(BootBlock boot)
|
|||
CHECKL(boot->limit != NULL);
|
||||
CHECKL(boot->base <= boot->alloc);
|
||||
CHECKL(boot->alloc <= boot->limit);
|
||||
CHECKL(boot->alloc < boot->limit);
|
||||
CHECKL(boot->base < boot->limit);
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue