diff options
author | eivind <eivind@FreeBSD.org> | 1999-12-21 11:14:12 +0000 |
---|---|---|
committer | eivind <eivind@FreeBSD.org> | 1999-12-21 11:14:12 +0000 |
commit | 8befc1a2b84269c73c5f4bb55d5961c9c1e64866 (patch) | |
tree | aa42526cc605d366c46f08ae42d166e1905b2fe7 /sys/dev/tx | |
parent | d6a0d6a22e9b0ac0457c1471bc84b9240b8b5242 (diff) | |
download | FreeBSD-src-8befc1a2b84269c73c5f4bb55d5961c9c1e64866.zip FreeBSD-src-8befc1a2b84269c73c5f4bb55d5961c9c1e64866.tar.gz |
Change incorrect NULLs to 0s
Diffstat (limited to 'sys/dev/tx')
-rw-r--r-- | sys/dev/tx/if_tx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/tx/if_tx.c b/sys/dev/tx/if_tx.c index 9b797d4..288edbd 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; \ } \ |