From 6b66ddd39e9ed690cb06d6182976bed51c9c5b46 Mon Sep 17 00:00:00 2001 From: Christoph Herzog Date: Mon, 6 Mar 2023 13:22:22 +0100 Subject: [PATCH] chore: Fix compile errors in sock_shutdown --- lib/wasi/src/syscalls/wasix/sock_shutdown.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/wasi/src/syscalls/wasix/sock_shutdown.rs b/lib/wasi/src/syscalls/wasix/sock_shutdown.rs index 4759a79c770..e081ec602fa 100644 --- a/lib/wasi/src/syscalls/wasix/sock_shutdown.rs +++ b/lib/wasi/src/syscalls/wasix/sock_shutdown.rs @@ -8,7 +8,7 @@ use crate::syscalls::*; /// ## Parameters /// /// * `how` - Which channels on the socket to shut down. -#[instrument(level = "debug", skip-all, fields(sock), ret)] +#[instrument(level = "debug", skip_all, fields(sock), ret)] pub fn sock_shutdown(mut ctx: FunctionEnvMut<'_, WasiEnv>, sock: WasiFd, how: SdFlags) -> Errno { let both = __WASI_SHUT_RD | __WASI_SHUT_WR; let how = match how {