diff options
author | Stefan Fritsch <sf@cvs.openbsd.org> | 2014-05-04 20:09:16 +0000 |
---|---|---|
committer | Stefan Fritsch <sf@cvs.openbsd.org> | 2014-05-04 20:09:16 +0000 |
commit | 4be89f79911bec24362f5ba21986c3fb06705efb (patch) | |
tree | 9be9e830d1f874fddb3f59b5c43eaa9c5298f0b3 /sys/dev/pci/ubsec.c | |
parent | d86c60b8e115f0f6c93348f311c7025836af60f2 (diff) |
format string fixes for bus_addr_t and bus_size_t
bus_addr_t and bus_size_t are u_long everywhere
ok kettenis@
Diffstat (limited to 'sys/dev/pci/ubsec.c')
-rw-r--r-- | sys/dev/pci/ubsec.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/pci/ubsec.c b/sys/dev/pci/ubsec.c index abb20a84648..e9f765e6719 100644 --- a/sys/dev/pci/ubsec.c +++ b/sys/dev/pci/ubsec.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ubsec.c,v 1.156 2013/12/22 11:05:58 sf Exp $ */ +/* $OpenBSD: ubsec.c,v 1.157 2014/05/04 20:09:15 sf Exp $ */ /* * Copyright (c) 2000 Jason L. Wright (jason@thought.net) @@ -2470,12 +2470,12 @@ ubsec_kprocess_rsapriv(struct ubsec_softc *sc, struct cryptkop *krp) #ifdef DIAGNOSTIC if (rp->rpr_msgin.dma_paddr & 3 || rp->rpr_msgin.dma_size & 3) { - panic("%s: rsapriv: invalid msgin %08x(0x%x)", + panic("%s: rsapriv: invalid msgin %08x(0x%lx)", sc->sc_dv.dv_xname, rp->rpr_msgin.dma_paddr, rp->rpr_msgin.dma_size); } if (rp->rpr_msgout.dma_paddr & 3 || rp->rpr_msgout.dma_size & 3) { - panic("%s: rsapriv: invalid msgout %08x(0x%x)", + panic("%s: rsapriv: invalid msgout %08x(0x%lx)", sc->sc_dv.dv_xname, rp->rpr_msgout.dma_paddr, rp->rpr_msgout.dma_size); } |