diff options
author | 2007-04-18 21:08:35 +0000 | |
---|---|---|
committer | 2007-04-18 21:08:35 +0000 | |
commit | 1d0c70c1d5bcbc1158062baeb7f110a5dc6844db (patch) | |
tree | 1523a17a0818ba0dd90fe866afac1622c835740b | |
parent | When trying to read the primary superblock, do not accidentially read (diff) | |
download | wireguard-openbsd-1d0c70c1d5bcbc1158062baeb7f110a5dc6844db.tar.xz wireguard-openbsd-1d0c70c1d5bcbc1158062baeb7f110a5dc6844db.zip |
Pass arguments to DPRINTF in the right order.
-rw-r--r-- | sys/dev/pci/if_cas.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_cas.c b/sys/dev/pci/if_cas.c index 6f7951a72a7..f184ffa8dd1 100644 --- a/sys/dev/pci/if_cas.c +++ b/sys/dev/pci/if_cas.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_cas.c,v 1.7 2007/04/15 19:57:16 kettenis Exp $ */ +/* $OpenBSD: if_cas.c,v 1.8 2007/04/18 21:08:35 kettenis Exp $ */ /* * @@ -1167,7 +1167,7 @@ cas_rint(struct cas_softc *sc) rxs = &sc->sc_rxsoft[idx]; DPRINTF(sc, ("hdr at idx %d, off %d, len %d\n", - idx, len, off)); + idx, off, len)); bus_dmamap_sync(sc->sc_dmatag, rxs->rxs_dmamap, 0, rxs->rxs_dmamap->dm_mapsize, BUS_DMASYNC_POSTREAD); |