diff options
| author | Bruce Evans <bde@FreeBSD.org> | 1998-08-24 02:28:16 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 1998-08-24 02:28:16 +0000 |
| commit | 00671271c38b8c7744fb476e1cc1cdc8373418c6 (patch) | |
| tree | f54f593201719b1554dc375cdb1c8ff10b8ca3cd /sys/dev/ar | |
| parent | 93bb6f11725c73ad55491b2db2d3b7afd0759575 (diff) | |
Notes
Diffstat (limited to 'sys/dev/ar')
| -rw-r--r-- | sys/dev/ar/if_ar.c | 10 | ||||
| -rw-r--r-- | sys/dev/ar/if_ar_isa.c | 10 |
2 files changed, 10 insertions, 10 deletions
diff --git a/sys/dev/ar/if_ar.c b/sys/dev/ar/if_ar.c index 964684ef3b76..adebd22e5489 100644 --- a/sys/dev/ar/if_ar.c +++ b/sys/dev/ar/if_ar.c @@ -28,7 +28,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: if_ar.c,v 1.20 1998/06/17 13:54:56 bde Exp $ + * $Id: if_ar.c,v 1.21 1998/06/21 14:53:10 bde Exp $ */ /* @@ -1240,12 +1240,12 @@ ar_eat_packet(struct ar_softc *sc, int single) while(rxdesc != cda) { loopcnt++; if(loopcnt > sc->rxmax) { - printf("ar%d: eat pkt %d loop, cda %x, " - "rxdesc %x, stat %x.\n", + printf("ar%d: eat pkt %d loop, cda %p, " + "rxdesc %p, stat %x.\n", sc->unit, loopcnt, - cda, - rxdesc, + (void *)cda, + (void *)rxdesc, rxdesc->stat); break; } diff --git a/sys/dev/ar/if_ar_isa.c b/sys/dev/ar/if_ar_isa.c index 964684ef3b76..adebd22e5489 100644 --- a/sys/dev/ar/if_ar_isa.c +++ b/sys/dev/ar/if_ar_isa.c @@ -28,7 +28,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: if_ar.c,v 1.20 1998/06/17 13:54:56 bde Exp $ + * $Id: if_ar.c,v 1.21 1998/06/21 14:53:10 bde Exp $ */ /* @@ -1240,12 +1240,12 @@ ar_eat_packet(struct ar_softc *sc, int single) while(rxdesc != cda) { loopcnt++; if(loopcnt > sc->rxmax) { - printf("ar%d: eat pkt %d loop, cda %x, " - "rxdesc %x, stat %x.\n", + printf("ar%d: eat pkt %d loop, cda %p, " + "rxdesc %p, stat %x.\n", sc->unit, loopcnt, - cda, - rxdesc, + (void *)cda, + (void *)rxdesc, rxdesc->stat); break; } |
