From 5105f9ea59179c7129d3bf97734eb37e26ec68b0 Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Fri, 26 Aug 2005 19:07:03 +0000 Subject: Fix a lack of parenthesis in macro usage that showed up with INVARIANTS turned on, i.e. in a kernel build. --- bsd-core/ati_pcigart.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bsd-core') diff --git a/bsd-core/ati_pcigart.c b/bsd-core/ati_pcigart.c index f6131664..71b08d68 100644 --- a/bsd-core/ati_pcigart.c +++ b/bsd-core/ati_pcigart.c @@ -65,7 +65,7 @@ int drm_ati_pcigart_init(drm_device_t *dev, unsigned long *addr, bzero(pci_gart, ATI_PCIGART_TABLE_SIZE); - KASSERT(PAGE_SIZE >= ATI_PCIGART_PAGE_SIZE, "page size too small"); + KASSERT(PAGE_SIZE >= ATI_PCIGART_PAGE_SIZE, ("page size too small")); for ( i = 0 ; i < pages ; i++ ) { page_base = (u32) dev->sg->busaddr[i]; -- cgit v1.2.3