Skip to content

Commit

Permalink
[PATCH] kernel/sys.c NULL noise removal
Browse files Browse the repository at this point in the history
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
  • Loading branch information
Al Viro committed Feb 8, 2006
1 parent 53f087f commit 4bb8089
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kernel/sys.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 4bb8089

Please sign in to comment.