From 77a00ce1fb4ae2523e22b9b84ae09a0200502e38 Mon Sep 17 00:00:00 2001 From: Leo K Date: Tue, 5 Oct 2021 22:38:27 +0200 Subject: chore: various op cleanup (#12329) --- runtime/ops/signal.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'runtime/ops/signal.rs') diff --git a/runtime/ops/signal.rs b/runtime/ops/signal.rs index eef72f511..aa419c6c8 100644 --- a/runtime/ops/signal.rs +++ b/runtime/ops/signal.rs @@ -224,7 +224,7 @@ pub fn op_signal_unbind( #[cfg(not(unix))] pub fn op_signal_bind( _state: &mut OpState, - _args: (), + _: (), _: (), ) -> Result<(), AnyError> { Err(generic_error("not implemented")) @@ -233,7 +233,7 @@ pub fn op_signal_bind( #[cfg(not(unix))] fn op_signal_unbind( _state: &mut OpState, - _args: (), + _: (), _: (), ) -> Result<(), AnyError> { Err(generic_error("not implemented")) @@ -242,7 +242,7 @@ fn op_signal_unbind( #[cfg(not(unix))] async fn op_signal_poll( _state: Rc>, - _args: (), + _: (), _: (), ) -> Result<(), AnyError> { Err(generic_error("not implemented")) -- cgit v1.2.3