summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2013-05-18 23:13:08 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2013-05-18 23:13:08 +0000
commit1f33c7c63bbf38e214a3f858e0462e79ec2f683f (patch)
tree47d084c175970dc1175056e6544b1c6b1ee5a9d5
parent261c47efe0c1ea4aa33977ee9023cece7d30f030 (diff)
fix cut'n'paste abuse in "can't happen" error message
-rw-r--r--sys/arch/sgi/hpc/wdsc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sgi/hpc/wdsc.c b/sys/arch/sgi/hpc/wdsc.c
index b8e8409e565..2022fe97357 100644
--- a/sys/arch/sgi/hpc/wdsc.c
+++ b/sys/arch/sgi/hpc/wdsc.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: wdsc.c,v 1.3 2012/10/03 22:46:09 miod Exp $ */
+/* $OpenBSD: wdsc.c,v 1.4 2013/05/18 23:13:07 miod Exp $ */
/* $NetBSD: wdsc.c,v 1.32 2011/07/01 18:53:47 dyoung Exp $ */
/*
@@ -147,7 +147,7 @@ wdsc_attach(struct device *parent, struct device *self, void *aux)
if ((err = bus_space_subregion(haa->ha_st, haa->ha_sh,
haa->ha_devoff + 3 + 4, 1, &sc->sc_data_regh)) != 0) {
- printf(": unable to map asr reg, err=%d\n", err);
+ printf(": unable to map data reg, err=%d\n", err);
return;
}