diff options
Diffstat (limited to 'examples/t-idle-main.rs')
-rw-r--r-- | examples/t-idle-main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/t-idle-main.rs b/examples/t-idle-main.rs index 1adc9bf0..307ccb20 100644 --- a/examples/t-idle-main.rs +++ b/examples/t-idle-main.rs @@ -16,8 +16,8 @@ mod app { struct Local {} #[init] - fn init(_: init::Context) -> (Shared, Local, init::Monotonics) { - (Shared {}, Local {}, init::Monotonics()) + fn init(_: init::Context) -> (Shared, Local) { + (Shared {}, Local {}) } #[idle] |