From 6a8428ff7d06dd35b39020080b293dd57c85daa5 Mon Sep 17 00:00:00 2001 From: Kaspar Schleiser Date: Thu, 14 Dec 2023 10:38:09 +0100 Subject: [PATCH] riot-rs-rt: fix debug output: "main()" -> "startup()" --- src/riot-rs-rt/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/riot-rs-rt/src/lib.rs b/src/riot-rs-rt/src/lib.rs index c65d7bdbc..fd88712f9 100644 --- a/src/riot-rs-rt/src/lib.rs +++ b/src/riot-rs-rt/src/lib.rs @@ -66,7 +66,7 @@ fn startup() -> ! { #[cfg(feature = "debug-console")] debug::init(); - debug::println!("riot_rs_rt::main()"); + debug::println!("riot_rs_rt::startup()"); for f in INIT_FUNCS { f();