1
Fork 0
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:
Gareth Rees 2014-05-20 12:44:36 +01:00
parent f2c4505d22
commit 0274929d35

View file

@ -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;
}