From 154c6d17c096761b95ae3e065eaed747f61f1a4a 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 Signed-off-by: Stefan Hajnoczi --- 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 d07d24c0..36e6b02f 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 -- 2.17.1