Skip to content

Commit f22bac7

Browse files
committed
msg
1 parent c5b2b41 commit f22bac7

File tree

1 file changed

+1
-1
lines changed
  • crates/vm/src/stdlib

1 file changed

+1
-1
lines changed

crates/vm/src/stdlib/os.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1446,7 +1446,7 @@ pub(super) mod _os {
14461446
// ExitProcess() accepts an UINT type:
14471447
// reject exit code which doesn't fit in an UINT
14481448
u32::try_from(exitcode)
1449-
.map_err(|_| vm.new_value_error(format!("invalid exit code: {exitcode}")))
1449+
.map_err(|_| vm.new_value_error(format!("Invalid exit code: {exitcode}")))
14501450
}
14511451

14521452
#[pyfunction]

0 commit comments

Comments
 (0)