summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1994-11-18 13:40:19 +0000
committerjkh <jkh@FreeBSD.org>1994-11-18 13:40:19 +0000
commit3ed3df5cfc655bbb5d15dd90f0fb0ec2fc3757c2 (patch)
tree3f5023491a4eec1357f0d126eae7d07d24e96181 /sys
parent36244d82e6b47990bf77eaff5c16de1a54d0ae9a (diff)
downloadFreeBSD-src-3ed3df5cfc655bbb5d15dd90f0fb0ec2fc3757c2.zip
FreeBSD-src-3ed3df5cfc655bbb5d15dd90f0fb0ec2fc3757c2.tar.gz
Boy, was THIS buggered up! Calm the compiler by fixing the obvious
syntax errors.
Diffstat (limited to 'sys')
-rw-r--r--sys/i386/boot/biosboot/boot.c13
1 files changed, 5 insertions, 8 deletions
diff --git a/sys/i386/boot/biosboot/boot.c b/sys/i386/boot/biosboot/boot.c
index 0c97db1..36afb66 100644
--- a/sys/i386/boot/biosboot/boot.c
+++ b/sys/i386/boot/biosboot/boot.c
@@ -24,7 +24,7 @@
* the rights to redistribute these changes.
*
* from: Mach, [92/04/03 16:51:14 rvb]
- * $Id: boot.c,v 1.24 1994/11/18 06:22:11 phk Exp $
+ * $Id: boot.c,v 1.25 1994/11/18 10:21:31 phk Exp $
*/
@@ -78,14 +78,11 @@ int drive;
bootinfo.bios_geom[ret] = get_diskinfo(ret + 0x80);
printf("\n>> FreeBSD BOOT @ 0x%x: %d/%d k of memory\n",
- ouraddr,
- memsize(0),
- memsize(1));
+ ouraddr, memsize(0), memsize(1));
printf("Use hd(1,a)/kernel to boot sd0 when wd0 is also installed.\n");
- printf("Usage: [[[%s(0,a)]%s][-s][-r][-a][-c][-d][-b]]\n");
- printf("Use ? for file list, or simply press Return for default\n");
- , devs[(drive & 0x80) ? 0 : 2]
- , names[0]);
+ printf("Usage: [[[%s(0,a)]%s][-s][-r][-a][-c][-d][-b]]\n",
+ devs[(drive & 0x80) ? 0 : 2], names[0]);
+ printf("Use ? for file list or simply press Return for defaults\n");
gateA20();
loadstart:
/***************************************************************\
OpenPOWER on IntegriCloud