diff options
author | 2007-07-06 18:03:42 +0000 | |
---|---|---|
committer | 2007-07-06 18:03:42 +0000 | |
commit | 0203721aa2f2f22d0fb4bf582271b24539c69e39 (patch) | |
tree | 80b945ab51555a0dc2eeb94e355c93f7d3238786 | |
parent | don't check the IEEE80211_CAPINFO_PRIVACY bit in (re)association requests. (diff) | |
download | wireguard-openbsd-0203721aa2f2f22d0fb4bf582271b24539c69e39.tar.xz wireguard-openbsd-0203721aa2f2f22d0fb4bf582271b24539c69e39.zip |
typo in an error message.
reported a while back by Laurence Tratt, reminded more recently by brad@
-rw-r--r-- | sys/dev/pci/if_iwi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_iwi.c b/sys/dev/pci/if_iwi.c index f67d8688e27..e057ac71b43 100644 --- a/sys/dev/pci/if_iwi.c +++ b/sys/dev/pci/if_iwi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_iwi.c,v 1.81 2007/07/05 21:38:19 damien Exp $ */ +/* $OpenBSD: if_iwi.c,v 1.82 2007/07/06 18:03:42 damien Exp $ */ /*- * Copyright (c) 2004-2006 @@ -1683,7 +1683,7 @@ iwi_load_firmware(struct iwi_softc *sc, const char *data, int size) error = bus_dmamem_alloc(sc->sc_dmat, size, PAGE_SIZE, 0, &seg, 1, &nsegs, BUS_DMA_NOWAIT); if (error != 0) { - printf("%s: could allocate firmware DMA memory\n", + printf("%s: could not allocate firmware DMA memory\n", sc->sc_dev.dv_xname); goto fail2; } |