Skip to content

Commit

Permalink
[PATCH] uml: fix a typo in do_uml_initcalls
Browse files Browse the repository at this point in the history
From: Jeff Dike <jdike@addtoit.com>

We had a spurious semicolon somehow.

Signed-off-by: Jeff Dike <jdike@addtoit.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Jeff Dike authored and Linus Torvalds committed Jun 5, 2006
1 parent 5cb38bc commit f218312
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/um/os-Linux/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -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++;
}
Expand Down

0 comments on commit f218312

Please sign in to comment.