diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2006-02-01 05:57:32 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2006-02-07 20:57:47 -0500 |
commit | 4bb8089c86b95b4f6bbd839cb83ca4556b06a031 (patch) | |
tree | 86069d7b4063f30a37ece5c27372b8a4414f1ede /kernel | |
parent | 53f087febfd12e74ba9f1082e71e9a45adc039ad (diff) | |
download | op-kernel-dev-4bb8089c86b95b4f6bbd839cb83ca4556b06a031.zip op-kernel-dev-4bb8089c86b95b4f6bbd839cb83ca4556b06a031.tar.gz |
[PATCH] kernel/sys.c NULL noise removal
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/sys.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/sys.c b/kernel/sys.c index 0929c69..f91218a 100644 --- a/kernel/sys.c +++ b/kernel/sys.c @@ -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; } |