diff options
author | Eric Anholt <anholt@freebsd.org> | 2004-01-06 04:54:25 +0000 |
---|---|---|
committer | Eric Anholt <anholt@freebsd.org> | 2004-01-06 04:54:25 +0000 |
commit | fb7b802ddaa1440fdba829eff5373c7d9425f582 (patch) | |
tree | b3b069cab7bd5271fb133dbb3f750766e004bff9 /bsd-core/drm_dma.c | |
parent | 9fb6986e83a84f6b958e8aba2c20b5988676bd55 (diff) |
Fix some misuse of NULL where 0 is intended.
Obtained from: FreeBSD CVS
Diffstat (limited to 'bsd-core/drm_dma.c')
-rw-r--r-- | bsd-core/drm_dma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bsd-core/drm_dma.c b/bsd-core/drm_dma.c index 8d87c38a..4570a867 100644 --- a/bsd-core/drm_dma.c +++ b/bsd-core/drm_dma.c @@ -74,7 +74,7 @@ void DRM(dma_takedown)(drm_device_t *dev) dma->bufs[i].buf_count, dma->bufs[i].seg_count); for (j = 0; j < dma->bufs[i].seg_count; j++) { - if (dma->bufs[i].seglist[j] != NULL) + if (dma->bufs[i].seglist[j] != 0) DRM(pci_free)(dev, dma->bufs[i].buf_size, (void *)dma->bufs[i].seglist[j], dma->bufs[i].seglist_bus[j]); |