From 00deed40cc4ce4f22c6f3ce12fbb2c57e095c6ee Mon Sep 17 00:00:00 2001 From: okuji Date: Thu, 21 Dec 2000 22:42:33 +0000 Subject: [PATCH] update NEWS and fix a sentense inconsistent against GNU coding style. --- NEWS | 1 + stage2/disk_io.c | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) 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; }