diff options
author | kevlo <kevlo@FreeBSD.org> | 2012-10-09 08:27:40 +0000 |
---|---|---|
committer | kevlo <kevlo@FreeBSD.org> | 2012-10-09 08:27:40 +0000 |
commit | 8747a46991f804159ec832961138fbafc8489e41 (patch) | |
tree | e7c16f01159a965270042d2eee89fe0f8bea4679 /sys/i386/linux | |
parent | 543514a78ba423fb4c2351e080e8822ed44312d1 (diff) | |
download | FreeBSD-src-8747a46991f804159ec832961138fbafc8489e41.zip FreeBSD-src-8747a46991f804159ec832961138fbafc8489e41.tar.gz |
Prefer NULL over 0 for pointers
Diffstat (limited to 'sys/i386/linux')
-rw-r--r-- | sys/i386/linux/linux_sysvec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/i386/linux/linux_sysvec.c b/sys/i386/linux/linux_sysvec.c index d4e23e1..39acb02 100644 --- a/sys/i386/linux/linux_sysvec.c +++ b/sys/i386/linux/linux_sysvec.c @@ -1173,7 +1173,7 @@ linux_elf_modevent(module_t mod, int type, void *data) static moduledata_t linux_elf_mod = { "linuxelf", linux_elf_modevent, - 0 + NULL }; DECLARE_MODULE_TIED(linuxelf, linux_elf_mod, SI_SUB_EXEC, SI_ORDER_ANY); |