aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/tx/if_tx.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/tx/if_tx.c')
-rw-r--r--sys/dev/tx/if_tx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/tx/if_tx.c b/sys/dev/tx/if_tx.c
index 9b797d468f84..288edbd9b874 100644
--- a/sys/dev/tx/if_tx.c
+++ b/sys/dev/tx/if_tx.c
@@ -58,7 +58,7 @@
{ MGETHDR((m),M_DONTWAIT,MT_DATA); \
if (m) { \
MCLGET((m),M_DONTWAIT); \
- if( NULL == ((m)->m_flags & M_EXT) ){ \
+ if( 0 == ((m)->m_flags & M_EXT) ){ \
m_freem(m); \
(m) = NULL; \
} \