summaryrefslogtreecommitdiffstats
path: root/sys/dev/pci/pciide.c
diff options
context:
space:
mode:
authorbrad <brad@openbsd.org>2006-09-19 03:34:49 +0000
committerbrad <brad@openbsd.org>2006-09-19 03:34:49 +0000
commite177b68d9cc206a59bdfeba20ad7e0867c37ddff (patch)
treeb57a74d3b44b64d1891f3bf31ec181ae8ec9727a /sys/dev/pci/pciide.c
parentadd 82801GHM and 82801H (diff)
downloadwireguard-openbsd-e177b68d9cc206a59bdfeba20ad7e0867c37ddff.tar.xz
wireguard-openbsd-e177b68d9cc206a59bdfeba20ad7e0867c37ddff.zip
add a missing space to a DMA load error printf.
Diffstat (limited to 'sys/dev/pci/pciide.c')
-rw-r--r--sys/dev/pci/pciide.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/pciide.c b/sys/dev/pci/pciide.c
index 7a6fe8982e2..9db55296532 100644
--- a/sys/dev/pci/pciide.c
+++ b/sys/dev/pci/pciide.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pciide.c,v 1.254 2006/09/16 00:46:56 jsg Exp $ */
+/* $OpenBSD: pciide.c,v 1.255 2006/09/19 03:34:49 brad Exp $ */
/* $NetBSD: pciide.c,v 1.127 2001/08/03 01:31:08 tsutsui Exp $ */
/*
@@ -1623,7 +1623,7 @@ pciide_dma_init(void *v, int channel, int drive, void *databuf,
dma_maps->dmamap_xfer,
databuf, datalen, NULL, BUS_DMA_NOWAIT|BUS_DMA_RAW);
if (error) {
- printf("%s:%d: unable to load xfer DMA map for"
+ printf("%s:%d: unable to load xfer DMA map for "
"drive %d, error=%d\n", sc->sc_wdcdev.sc_dev.dv_xname,
channel, drive, error);
return (error);