summaryrefslogtreecommitdiff
path: root/sys/arch/sparc64/stand
diff options
context:
space:
mode:
authorJason Peel <jsyn@cvs.openbsd.org>2002-07-10 20:30:16 +0000
committerJason Peel <jsyn@cvs.openbsd.org>2002-07-10 20:30:16 +0000
commitbea15f9ce66ce449773875180b92d69cfc685f74 (patch)
tree7ce3501e45ee4c02b9d8e894e35fc385e0b51867 /sys/arch/sparc64/stand
parentaf55ea6d8d0faa8e558acc4948995dcc65aec1f5 (diff)
'sez' is not an english word; ok deraadt@
Diffstat (limited to 'sys/arch/sparc64/stand')
-rw-r--r--sys/arch/sparc64/stand/ofwboot/ofdev.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/sparc64/stand/ofwboot/ofdev.c b/sys/arch/sparc64/stand/ofwboot/ofdev.c
index 51920736c13..16f91db8f87 100644
--- a/sys/arch/sparc64/stand/ofwboot/ofdev.c
+++ b/sys/arch/sparc64/stand/ofwboot/ofdev.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ofdev.c,v 1.3 2002/03/14 01:26:46 millert Exp $ */
+/* $OpenBSD: ofdev.c,v 1.4 2002/07/10 20:30:15 jsyn Exp $ */
/* $NetBSD: ofdev.c,v 1.1 2000/08/20 14:58:41 mrg Exp $ */
/*
@@ -80,7 +80,7 @@ filename(str, ppart)
/* ...look whether there is a device with this name */
dhandle = OF_finddevice(str);
#ifdef NOTDEF_DEBUG
- printf("filename: OF_finddevice(%s) sez %x\n",
+ printf("filename: OF_finddevice(%s) says %x\n",
str, dhandle);
#endif
*cp = savec;
@@ -465,11 +465,11 @@ devopen(of, name, file)
LABELSECTOR, DEV_BSIZE, buf, &read) != 0
|| read != DEV_BSIZE
|| (errmsg = getdisklabel(buf, &label))) {
- if (errmsg) printf("devopen: getdisklabel sez %s\n", errmsg);
+ if (errmsg) printf("devopen: getdisklabel says %s\n", errmsg);
/* Else try MBR partitions */
errmsg = search_label(&ofdev, 0, buf, &label, 0);
if (errmsg) {
- printf("devopen: search_label sez %s\n", errmsg);
+ printf("devopen: search_label says %s\n", errmsg);
error = ERDLAB;
}
if (error && error != ERDLAB)