Commit 4bb8089c authored by Al Viro's avatar Al Viro

[PATCH] kernel/sys.c NULL noise removal

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 53f087fe
......@@ -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;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment