aboutsummaryrefslogtreecommitdiff
path: root/sys/nfs
diff options
context:
space:
mode:
authorKevin Lo <kevlo@FreeBSD.org>2012-10-09 08:27:40 +0000
committerKevin Lo <kevlo@FreeBSD.org>2012-10-09 08:27:40 +0000
commita10cee30c94cf5944826d2a495e9cdf339dfbcc8 (patch)
treee7c16f01159a965270042d2eee89fe0f8bea4679 /sys/nfs
parent10d66948a86af28bd85ffc630b1db99a2a3d25de (diff)
downloadsrc-a10cee30c94cf5944826d2a495e9cdf339dfbcc8.tar.gz
src-a10cee30c94cf5944826d2a495e9cdf339dfbcc8.zip
Prefer NULL over 0 for pointers
Notes
Notes: svn path=/head/; revision=241370
Diffstat (limited to 'sys/nfs')
-rw-r--r--sys/nfs/nfs_nfssvc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/nfs/nfs_nfssvc.c b/sys/nfs/nfs_nfssvc.c
index 9680eb7e9708..929aa6abbf9b 100644
--- a/sys/nfs/nfs_nfssvc.c
+++ b/sys/nfs/nfs_nfssvc.c
@@ -147,7 +147,7 @@ nfssvc_modevent(module_t mod, int type, void *data)
static moduledata_t nfssvc_mod = {
"nfssvc",
nfssvc_modevent,
- NULL,
+ NULL
};
DECLARE_MODULE(nfssvc, nfssvc_mod, SI_SUB_VFS, SI_ORDER_ANY);