From 8747a46991f804159ec832961138fbafc8489e41 Mon Sep 17 00:00:00 2001 From: kevlo Date: Tue, 9 Oct 2012 08:27:40 +0000 Subject: Prefer NULL over 0 for pointers --- sys/i386/linux/linux_sysvec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/i386/linux/linux_sysvec.c') 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); -- cgit v1.1