From: Domen Puncer Signed-off-by: Domen Puncer Signed-off-by: Andrew Morton --- 25-akpm/init/do_mounts_initrd.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff -puN init/do_mounts_initrd.c~init-do_mounts_initrdc-fix-sparse-warning init/do_mounts_initrd.c --- 25/init/do_mounts_initrd.c~init-do_mounts_initrdc-fix-sparse-warning 2005-03-19 13:57:04.000000000 -0800 +++ 25-akpm/init/do_mounts_initrd.c 2005-03-19 13:57:04.000000000 -0800 @@ -41,7 +41,7 @@ static int __init do_linuxrc(void * shel static void __init handle_initrd(void) { int error; - int i, pid; + int pid; real_root_dev = new_encode_dev(ROOT_DEV); create_dev("/dev/root.old", Root_RAM0, NULL); @@ -58,7 +58,7 @@ static void __init handle_initrd(void) pid = kernel_thread(do_linuxrc, "/linuxrc", SIGCHLD); if (pid > 0) { - while (pid != sys_wait4(-1, &i, 0, NULL)) + while (pid != sys_wait4(-1, NULL, 0, NULL)) yield(); } _