mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH 14/29] kernel/sys.c NULL noise removal
@ 2006-02-08  3:19 Al Viro
  0 siblings, 0 replies; only message in thread
From: Al Viro @ 2006-02-08  3:19 UTC (permalink / raw)
  To: torvalds; +Cc: linux-kernel

Date: 1138791452 -0500

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>

---

 kernel/sys.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

4bb8089c86b95b4f6bbd839cb83ca4556b06a031
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;
 	}
-- 
0.99.9.GIT


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2006-02-08  3:24 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-02-08  3:19 [PATCH 14/29] kernel/sys.c NULL noise removal Al Viro

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome