diff options
Diffstat (limited to '')
-rw-r--r-- | ui/task-priority-too-high.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/task-priority-too-high.rs b/ui/task-priority-too-high.rs index e7e0cce2..46ab5617 100644 --- a/ui/task-priority-too-high.rs +++ b/ui/task-priority-too-high.rs @@ -9,7 +9,7 @@ mod app { struct Local {} #[init] - fn init(_: init::Context) -> (Shared, Local, init::Monotonics) { + fn init(cx: init::Context) -> (Shared, Local, init::Monotonics) { (Shared {}, Local {}, init::Monotonics()) } |