summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkettenis <kettenis@openbsd.org>2009-01-07 13:01:39 +0000
committerkettenis <kettenis@openbsd.org>2009-01-07 13:01:39 +0000
commitc0dd1c75d4746f3bd38d8abdb89f721aeaedd09d (patch)
tree74f126520ef394f9342a10b51bc5b1ee519cd344
parentFix an occurance of __attribute which should have been __attribute__ (diff)
downloadwireguard-openbsd-c0dd1c75d4746f3bd38d8abdb89f721aeaedd09d.tar.xz
wireguard-openbsd-c0dd1c75d4746f3bd38d8abdb89f721aeaedd09d.zip
Fix typo.
-rw-r--r--sys/arch/sparc64/dev/rtc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc64/dev/rtc.c b/sys/arch/sparc64/dev/rtc.c
index 2e2cec4e96c..98fbf3e8eb4 100644
--- a/sys/arch/sparc64/dev/rtc.c
+++ b/sys/arch/sparc64/dev/rtc.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: rtc.c,v 1.6 2008/04/16 18:33:42 kettenis Exp $ */
+/* $OpenBSD: rtc.c,v 1.7 2009/01/07 13:01:39 kettenis Exp $ */
/*
* Copyright (c) 1992, 1993
@@ -199,7 +199,7 @@ rtc_attach(struct device *parent, struct device *self, void *aux)
sc->sc_ih = bus_intr_establish(sc->sc_iot, ea->ea_intrs[0],
IPL_BIO, 0, rtc_intr, sc, self->dv_xname);
if (sc->sc_ih == NULL) {
- printf("%s: can't establush interrupt\n",
+ printf("%s: can't establish interrupt\n",
self->dv_xname);
}
}