diff options
author | skra <skra@FreeBSD.org> | 2015-11-20 09:37:04 +0000 |
---|---|---|
committer | skra <skra@FreeBSD.org> | 2015-11-20 09:37:04 +0000 |
commit | 510afdaf212a4f72c8d79ec1dba8ec0be926198b (patch) | |
tree | 70fc81e263a3dee6e48511f7a886858704170189 /sys/dev/de | |
parent | 17faa8a052434cccccffc833129eccec31136f22 (diff) | |
download | FreeBSD-src-510afdaf212a4f72c8d79ec1dba8ec0be926198b.zip FreeBSD-src-510afdaf212a4f72c8d79ec1dba8ec0be926198b.tar.gz |
Fix build when KTR is defined but not KTR_TULIP.
Approved by: kib (mentor)
Diffstat (limited to 'sys/dev/de')
-rw-r--r-- | sys/dev/de/if_de.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/de/if_de.c b/sys/dev/de/if_de.c index 6700fab..0e6b27c 100644 --- a/sys/dev/de/if_de.c +++ b/sys/dev/de/if_de.c @@ -3937,8 +3937,8 @@ tulip_txput(tulip_softc_t * const sc, struct mbuf *m) segcnt++; m0 = m0->m_next; } -#endif CTR2(KTR_TULIP, "tulip_txput: sending packet %p (%d chunks)", m, segcnt); +#endif d_status = 0; eop = nextout = ri->ri_nextout; segcnt = 0; |