diff options
author | phk <phk@FreeBSD.org> | 2004-09-28 20:14:51 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2004-09-28 20:14:51 +0000 |
commit | f2271ed30b095a72f234bd411a7c251a8de45675 (patch) | |
tree | c7eda6881882e632f59509bba3fb4da6a2631c3d | |
parent | d08ddc3f6b1f2a309026672172529e0e6b5c49ba (diff) | |
download | FreeBSD-src-f2271ed30b095a72f234bd411a7c251a8de45675.zip FreeBSD-src-f2271ed30b095a72f234bd411a7c251a8de45675.tar.gz |
Add -1 to this non-existent use of m_print in the source tree so LINT
compiles again :-)
-rw-r--r-- | sys/dev/musycc/musycc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/musycc/musycc.c b/sys/dev/musycc/musycc.c index 88f2222..62615e5 100644 --- a/sys/dev/musycc/musycc.c +++ b/sys/dev/musycc/musycc.c @@ -739,7 +739,7 @@ musycc_intr0_rx_eom(struct softc *sc, int ch) /* Don't print a lot, just the begining will do */ if (m->m_len > 16) m->m_len = m->m_pkthdr.len = 16; - m_print(m); + m_print(m, -1); printf("\n"); } md->status = 1600; /* XXX: MTU */ |