summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorweingart <weingart@openbsd.org>1997-09-02 22:43:17 +0000
committerweingart <weingart@openbsd.org>1997-09-02 22:43:17 +0000
commit955d4282f4d36c79303c5732e22d8582a59d3e9e (patch)
tree73872515f1e1dcbd1254c9270a4444c05538a234
parentAdd "machine diskinfo" command. Needs work. (diff)
downloadwireguard-openbsd-955d4282f4d36c79303c5732e22d8582a59d3e9e.tar.xz
wireguard-openbsd-955d4282f4d36c79303c5732e22d8582a59d3e9e.zip
Pretty.
-rw-r--r--sys/arch/i386/stand/libsa/cmd_i386.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/stand/libsa/cmd_i386.c b/sys/arch/i386/stand/libsa/cmd_i386.c
index 54d9516e45c..dc1e849648c 100644
--- a/sys/arch/i386/stand/libsa/cmd_i386.c
+++ b/sys/arch/i386/stand/libsa/cmd_i386.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cmd_i386.c,v 1.2 1997/09/02 22:42:26 weingart Exp $ */
+/* $OpenBSD: cmd_i386.c,v 1.3 1997/09/02 22:43:17 weingart Exp $ */
/*
* Copyright (c) 1997 Michael Shalayeff, Tobias Weingartner
@@ -53,7 +53,7 @@ Xdiskinfo()
for(i = 0x80; i < 0x85; i++){
di = biosdinfo(i);
- printf("\t0x%x => Heads %d, Sectors %d\n",
+ printf("\tDisk 0x%x => Heads %d, Sectors %d\n",
i, BIOSNHEADS(di), BIOSNSECTS(di));
}