From 39e96588cc3d25c19fd1e811b9b5b1681ab36ef4 Mon Sep 17 00:00:00 2001 From: wpaul Date: Mon, 28 Feb 2005 16:47:54 +0000 Subject: Use 0 instead if NULL for vm_offset_t argument to windrv_lookup() to silence compiler warnings. --- sys/dev/if_ndis/if_ndis_pci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/dev/if_ndis/if_ndis_pci.c') diff --git a/sys/dev/if_ndis/if_ndis_pci.c b/sys/dev/if_ndis/if_ndis_pci.c index 4cb1a58..502225b 100644 --- a/sys/dev/if_ndis/if_ndis_pci.c +++ b/sys/dev/if_ndis/if_ndis_pci.c @@ -147,7 +147,7 @@ ndis_probe_pci(dev) driver_object *drv; t = ndis_devs; - drv = windrv_lookup(NULL, "PCI Bus"); + drv = windrv_lookup(0, "PCI Bus"); if (drv == NULL) return(ENXIO); -- cgit v1.1