From: Marc Dionne Date: Tue, 23 Mar 2010 21:49:22 +0000 (-0400) Subject: Fix #ifdef typo X-Git-Tag: openafs-devel-1_5_73~10 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=71b3dd155cc958ae818cc37b96c976a2965e2640;p=packages%2Fo%2Fopenafs.git 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 --- diff --git a/src/rx/xdr_rx.c b/src/rx/xdr_rx.c index 01e2a3bce..fbf3dbf34 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 */