Skip to content

Commit

Permalink
Missed one of the syscalls for the tracing fix
Browse files Browse the repository at this point in the history
  • Loading branch information
john-sharratt committed Mar 6, 2023
1 parent 6bced20 commit 565d6cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/wasi/src/syscalls/wasix/sock_shutdown.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use crate::syscalls::*;
/// ## Parameters
///
/// * `how` - Which channels on the socket to shut down.
#[instrument(level = "debug", 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 {
Expand Down

0 comments on commit 565d6cb

Please sign in to comment.