From c7e7950d2def88cca342e1bf6d753dd98675e5fe Mon Sep 17 00:00:00 2001 From: Ruslan Ermilov Date: Sun, 4 Dec 2005 00:25:03 +0000 Subject: Use __LP64__ to check for the 64-bit pointer type, and fix -Wundef. --- sys/netgraph/ng_vjc.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'sys/netgraph/ng_vjc.c') diff --git a/sys/netgraph/ng_vjc.c b/sys/netgraph/ng_vjc.c index 1321233abca4..ec70956e923a 100644 --- a/sys/netgraph/ng_vjc.c +++ b/sys/netgraph/ng_vjc.c @@ -109,12 +109,10 @@ static const struct ng_parse_type ng_vjc_config_type = { /* Parse type for the 'last_cs' and 'cs_next' fields in struct slcompress, which are pointers converted to integer indices, so parse them that way. */ -#if _MACHINE_ARCH == i386 +#ifndef __LP64__ #define NG_VJC_TSTATE_PTR_TYPE &ng_parse_uint32_type -#elif _MACHINE_ARCH == alpha -#define NG_VJC_TSTATE_PTR_TYPE &ng_parse_uint64_type #else -#error Unspported _MACHINE_ARCH +#define NG_VJC_TSTATE_PTR_TYPE &ng_parse_uint64_type #endif /* Parse type for the 'cs_hdr' field in a struct cstate. Ideally we would -- cgit v1.2.3