From b7c548a944753faf14eb1b6ee761c6c0cd6e768c Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Sun, 25 Apr 2010 01:47:03 +0100 Subject: [PATCH] [main] Match "starting execution" and "initialising devices" message style Add a trailing "ok" to the "initialising devices message", to match the visual style of the "ok" now added to the "starting execution" message. Signed-off-by: Michael Brown --- src/core/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/main.c b/src/core/main.c index ac81c284..a1128dd0 100644 --- a/src/core/main.c +++ b/src/core/main.c @@ -37,10 +37,10 @@ __asmcall int main ( void ) { struct image *image; /* Some devices take an unreasonably long time to initialise */ - printf ( PRODUCT_SHORT_NAME " initialising devices...\n" ); - + printf ( PRODUCT_SHORT_NAME " initialising devices..." ); initialise(); startup(); + printf ( "ok\n" ); /* * Print welcome banner