aboutsummaryrefslogtreecommitdiff
path: root/sys/netgraph/ng_vjc.c
diff options
context:
space:
mode:
authorRuslan Ermilov <ru@FreeBSD.org>2005-12-04 00:25:03 +0000
committerRuslan Ermilov <ru@FreeBSD.org>2005-12-04 00:25:03 +0000
commitc7e7950d2def88cca342e1bf6d753dd98675e5fe (patch)
treeb2060c66daa3baab33f099ba3e3d255f869e4e68 /sys/netgraph/ng_vjc.c
parent51016cdfd73c4033a801cbd0dbc55f724fe71d85 (diff)
downloadsrc-c7e7950d2def88cca342e1bf6d753dd98675e5fe.tar.gz
src-c7e7950d2def88cca342e1bf6d753dd98675e5fe.zip
Use __LP64__ to check for the 64-bit pointer type, and fix -Wundef.
Notes
Notes: svn path=/head/; revision=153069
Diffstat (limited to 'sys/netgraph/ng_vjc.c')
-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 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