summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sys/netgraph/ng_vjc.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/sys/netgraph/ng_vjc.c b/sys/netgraph/ng_vjc.c
index 1321233..ec70956 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
OpenPOWER on IntegriCloud