Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f2183125 authored by Jeff Dike's avatar Jeff Dike Committed by Linus Torvalds
Browse files

[PATCH] uml: fix a typo in do_uml_initcalls



From: Jeff Dike <jdike@addtoit.com>

We had a spurious semicolon somehow.

Signed-off-by: default avatarJeff Dike <jdike@addtoit.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 5cb38bc4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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++;
	}