From 71b3dd155cc958ae818cc37b96c976a2965e2640 Mon Sep 17 00:00:00 2001 From: Marc Dionne Date: Tue, 23 Mar 2010 17:49:22 -0400 Subject: [PATCH] Fix #ifdef typo Fix ifdef typo. The compiler complains that the variable is undefined. Not sure what effect this may have had on the intended preprocessor output. Change-Id: Idef3f4ac42a96a096be25d31ff416f7a23560d70 Reviewed-on: http://gerrit.openafs.org/1635 Reviewed-by: Derrick Brashear Tested-by: Derrick Brashear --- src/rx/xdr_rx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rx/xdr_rx.c b/src/rx/xdr_rx.c index 01e2a3b..fbf3dbf 100644 --- a/src/rx/xdr_rx.c +++ b/src/rx/xdr_rx.c @@ -62,7 +62,7 @@ #endif /* KERNEL */ /* Static prototypes */ -#if AFS_XDR_64BITOPS +#ifdef AFS_XDR_64BITOPS static bool_t xdrrx_getint64(XDR *axdrs, long *lp); static bool_t xdrrx_putint64(XDR *axdrs, long *lp); #endif /* AFS_XDR_64BITOPS */ -- 1.9.4