diff options
author | bmilekic <bmilekic@FreeBSD.org> | 2001-01-06 23:36:42 +0000 |
---|---|---|
committer | bmilekic <bmilekic@FreeBSD.org> | 2001-01-06 23:36:42 +0000 |
commit | bc25a02671067c08c1715ae7ca9473431e40f5b2 (patch) | |
tree | 976e0676e08a056d625dcb2c3d4cfd2d180fcdaf /sys/dev/musycc/musycc.c | |
parent | a121b36822dd039eccaad564e45b3442decd0697 (diff) | |
download | FreeBSD-src-bc25a02671067c08c1715ae7ca9473431e40f5b2.zip FreeBSD-src-bc25a02671067c08c1715ae7ca9473431e40f5b2.tar.gz |
*Blush* Fix a dumb typo in previous commit.
Pointed out by: phk
Diffstat (limited to 'sys/dev/musycc/musycc.c')
-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 a992bcb..6153a2a 100644 --- a/sys/dev/musycc/musycc.c +++ b/sys/dev/musycc/musycc.c @@ -1207,7 +1207,7 @@ musycc_connect(hook_p hook) if (m == NULL) goto errfree; MCLGET(m, M_TRYWAIT); - if ((m->m_flags M_EXT) == 0) { + if ((m->m_flags & M_EXT) == 0) { /* We've waited mbuf_wait and still got nothing. We're calling with M_TRYWAIT anyway - a little defensive programming costs us very little - if |