diff --git a/NEWS b/NEWS index 9406d0830..78c8160b5 100644 --- a/NEWS +++ b/NEWS @@ -19,6 +19,7 @@ New in 1.0 - XXXX-XX-XX: can embed a arbitrary configuration which will be used when Stage 2 cannot open a real configuration file, with this option. The argument must be an existing file. +* EZ-BIOS support is added. New in 0.5.96 - 2000-10-04: * New commands, "reboot" and "halt". diff --git a/stage2/disk_io.c b/stage2/disk_io.c index b8fcdcb20..da4789aa7 100644 --- a/stage2/disk_io.c +++ b/stage2/disk_io.c @@ -337,8 +337,8 @@ devwrite (int sector, int sector_count, char *buf) for (i = 0; i < sector_count; i++) { - if (! rawwrite(current_drive, part_start + sector + i, - buf + (i << SECTOR_BITS))) + if (! rawwrite (current_drive, part_start + sector + i, + buf + (i << SECTOR_BITS))) return 0; }