Fix NFS compile problem with CONFIG_NFS_STATISTICS=y

This commit is contained in:
Gregory Nutt 2015-02-25 08:58:30 -06:00
parent 87794e494a
commit 654788a8e0

View File

@ -102,7 +102,7 @@
/* Increment RPC statistics */
#ifdef CONFIG_NFS_STATISTICS
# define rpc_statistics(n) do { rpcstats.(n)++; } while (0)
# define rpc_statistics(n) do { rpcstats.n++; } while (0)
#else
# define rpc_statistics(n)
#endif