Skip to content

Commit e90b5a2

Browse files
committed
simplify welcome message
1 parent 6a77bd0 commit e90b5a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ extern "C" fn foo(_: usize) {
4343

4444
#[no_mangle] // don't mangle the name of this function
4545
pub extern "C" fn runtime_entry(_argc: i32, _argv: *const *const u8, _env: *const *const u8) -> ! {
46-
info!("Start user-level process to initialize the HermitOS");
46+
info!("Start HermitOS");
4747

4848
let id = unsafe { spawn(foo, 0, NORMAL_PRIO, hermit::DEFAULT_STACK_SIZE, -1) };
4949
let _ = join(id);

0 commit comments

Comments
 (0)