From e28e4d7e4707573d64baa270f9578937fe574a87 Mon Sep 17 00:00:00 2001 From: obrien Date: Thu, 9 May 2002 18:01:19 +0000 Subject: Directives may not be used inside a macro argument, so don't. --- sys/dev/ar/if_ar.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sys/dev/ar') diff --git a/sys/dev/ar/if_ar.c b/sys/dev/ar/if_ar.c index 7af27c2..059b616 100644 --- a/sys/dev/ar/if_ar.c +++ b/sys/dev/ar/if_ar.c @@ -1890,12 +1890,12 @@ ar_dmac_intr(struct ar_hardc *hc, int scano, u_char isr1) TRC(int ind = sc->rxhind;) ar_get_packets(sc); - TRC( #ifndef NETGRAPH - if(tt == sc->ifsppp.pp_if.if_ipackets) { +#define IPACKETS sc->ifsppp.pp_if.if_ipackets #else /* NETGRAPH */ - if(tt == sc->ipackets) { +#define IPACKETS sc->ipackets #endif /* NETGRAPH */ + TRC(if(tt == IPACKETS) { sca_descriptor *rxdesc; int i; -- cgit v1.1