]> err.no Git - linux-2.6/commitdiff
[PATCH] kernel/sys.c NULL noise removal
authorAl Viro <viro@zeniv.linux.org.uk>
Wed, 1 Feb 2006 10:57:32 +0000 (05:57 -0500)
committerAl Viro <viro@zeniv.linux.org.uk>
Wed, 8 Feb 2006 01:57:47 +0000 (20:57 -0500)
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
kernel/sys.c

index 0929c698affce76e1d48e52ca456b6c82298f928..f91218a5463e48e9716b3d14a4d54500477c6a6d 100644 (file)
@@ -428,7 +428,7 @@ void kernel_kexec(void)
 {
 #ifdef CONFIG_KEXEC
        struct kimage *image;
-       image = xchg(&kexec_image, 0);
+       image = xchg(&kexec_image, NULL);
        if (!image) {
                return;
        }