[PATCH 3/6] UML - Fix a typo in do_uml_initcalls

From: Jeff Dike
Date: Sat Jun 03 2006 - 22:16:41 EST


We had a spurious semicolon somehow.

Signed-off-by: Jeff Dike <jdike@xxxxxxxxxxx>

Index: linux-2.6.17-mm/arch/um/os-Linux/main.c
===================================================================
--- linux-2.6.17-mm.orig/arch/um/os-Linux/main.c 2006-05-01 14:37:32.000000000 -0400
+++ linux-2.6.17-mm/arch/um/os-Linux/main.c 2006-05-07 11:01:01.000000000 -0400
@@ -59,7 +59,7 @@ static __init void do_uml_initcalls(void
initcall_t *call;

call = &__uml_initcall_start;
- while (call < &__uml_initcall_end){;
+ while (call < &__uml_initcall_end){
(*call)();
call++;
}

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/