mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 04:13:31 +00:00
[CDMAKE]
Simplify the conditional checks; pointed by Victor Martinez. CORE-8190 #resolve svn path=/trunk/; revision=63205
This commit is contained in:
@@ -1327,7 +1327,7 @@ static void pass(void)
|
||||
|
||||
// Boot Volume Descriptor
|
||||
|
||||
if (eltorito == TRUE)
|
||||
if (eltorito)
|
||||
{
|
||||
write_byte(0);
|
||||
write_string("CD001\1");
|
||||
@@ -1390,7 +1390,7 @@ static void pass(void)
|
||||
fill_sector();
|
||||
|
||||
// Boot Catalog
|
||||
if (eltorito == TRUE)
|
||||
if (eltorito)
|
||||
{
|
||||
boot_catalog_sector = cd.sector;
|
||||
|
||||
@@ -1416,7 +1416,7 @@ static void pass(void)
|
||||
}
|
||||
|
||||
// Boot Image
|
||||
if (eltorito == TRUE)
|
||||
if (eltorito)
|
||||
{
|
||||
boot_image_sector = cd.sector;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user