diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2006-09-19 03:34:50 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2006-09-19 03:34:50 +0000 |
commit | bec9fbb71b6b98020d52074619a34722765ce4ac (patch) | |
tree | 97f25c755ec3aa9fab0a90a6cd7d22fe23094b9a /sys/dev/pci | |
parent | 8e72fcb73ae13e19b9f17d0b43e92dbbadd5ebfe (diff) |
add a missing space to a DMA load error printf.
Diffstat (limited to 'sys/dev/pci')
-rw-r--r-- | sys/dev/pci/pciide.c | 4 |
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); |