diff options
author | wpaul <wpaul@FreeBSD.org> | 2005-02-28 16:47:54 +0000 |
---|---|---|
committer | wpaul <wpaul@FreeBSD.org> | 2005-02-28 16:47:54 +0000 |
commit | 39e96588cc3d25c19fd1e811b9b5b1681ab36ef4 (patch) | |
tree | 48fc1f41c41d45b5381c8d829ffd4ea267e1d17c /sys/dev/if_ndis/if_ndis_pccard.c | |
parent | 14f61c0288b29d830c411f80b765a67e08b166a6 (diff) | |
download | FreeBSD-src-39e96588cc3d25c19fd1e811b9b5b1681ab36ef4.zip FreeBSD-src-39e96588cc3d25c19fd1e811b9b5b1681ab36ef4.tar.gz |
Use 0 instead if NULL for vm_offset_t argument to windrv_lookup() to
silence compiler warnings.
Diffstat (limited to 'sys/dev/if_ndis/if_ndis_pccard.c')
-rw-r--r-- | sys/dev/if_ndis/if_ndis_pccard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/if_ndis/if_ndis_pccard.c b/sys/dev/if_ndis/if_ndis_pccard.c index 38c4ac6..918e89c 100644 --- a/sys/dev/if_ndis/if_ndis_pccard.c +++ b/sys/dev/if_ndis/if_ndis_pccard.c @@ -151,7 +151,7 @@ ndis_probe_pccard(dev) int error; driver_object *drv; - drv = windrv_lookup(NULL, "PCCARD Bus"); + drv = windrv_lookup(0, "PCCARD Bus"); if (drv == NULL) return(ENXIO); |