diff options
author | John Baldwin <jhb@FreeBSD.org> | 2008-05-30 16:22:30 +0000 |
---|---|---|
committer | John Baldwin <jhb@FreeBSD.org> | 2008-05-30 16:22:30 +0000 |
commit | f1150521113d5d4169b56b0813791f06aeebc01c (patch) | |
tree | be3f921a88105c9660730dd5d3330fdbad3fe391 /sys/dev/ie | |
parent | cd7d66a21f1a9cc8192126b05cecdd8cf819964a (diff) |
Fix build with DEBUG defined.
Reported by: tinderbox
Notes
Notes:
svn path=/head/; revision=179435
Diffstat (limited to 'sys/dev/ie')
-rw-r--r-- | sys/dev/ie/if_ie.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/ie/if_ie.c b/sys/dev/ie/if_ie.c index 90d8b7c549c6..1d56b4d82d22 100644 --- a/sys/dev/ie/if_ie.c +++ b/sys/dev/ie/if_ie.c @@ -365,7 +365,7 @@ loop: #ifdef DEBUG in_ierint++; if (ie_debug & IED_RINT) - if_printf(ifp, "rint\n"); + if_printf(sc->ifp, "rint\n"); #endif ierint(sc); #ifdef DEBUG @@ -376,7 +376,7 @@ loop: #ifdef DEBUG in_ietint++; if (ie_debug & IED_TINT) - if_printf(ifp, "tint\n"); + if_printf(sc->ifp, "tint\n"); #endif ietint(sc); #ifdef DEBUG @@ -386,13 +386,13 @@ loop: if (status & IE_ST_RNR) { #ifdef DEBUG if (ie_debug & IED_RNR) - if_printf(ifp, "rnr\n"); + if_printf(sc->ifp, "rnr\n"); #endif iernr(sc); } #ifdef DEBUG if ((status & IE_ST_ALLDONE) && (ie_debug & IED_CNA)) - if_printf(ifp, "cna\n"); + if_printf(sc->ifp, "cna\n"); #endif if ((status = sc->scb->ie_status) & IE_ST_WHENCE) |