Browse Source

[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 <mcb30@ipxe.org>
tags/v1.20.1
Michael Brown 14 years ago
parent
commit
b7c548a944
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      src/core/main.c

+ 2
- 2
src/core/main.c View File

@@ -37,10 +37,10 @@ __asmcall int main ( void ) {
37 37
 	struct image *image;
38 38
 
39 39
 	/* Some devices take an unreasonably long time to initialise */
40
-	printf ( PRODUCT_SHORT_NAME " initialising devices...\n" );
41
-
40
+	printf ( PRODUCT_SHORT_NAME " initialising devices..." );
42 41
 	initialise();
43 42
 	startup();
43
+	printf ( "ok\n" );
44 44
 
45 45
 	/*
46 46
 	 * Print welcome banner

Loading…
Cancel
Save