Skip to content

Commit

Permalink
Fix misspelling of "the"
Browse files Browse the repository at this point in the history
Co-authored-by: awygle <[email protected]>
  • Loading branch information
nick-mobilecoin and awygle committed Jan 10, 2023
1 parent 5ce800b commit 9629b16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion io/untrusted/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ fn default_stderr_write_all(buf: &[u8]) {
/// The ocall that will take in stderr messages from the enclave.
extern "C" fn ocall_stderr(input: *const c_void, len: usize) {
// SAFETY: Converting from C interface to Rust. We must rely on the enclave
// side of the implementation to provide teh correct length for the input
// side of the implementation to provide the correct length for the input
// buffer
let bytes = unsafe { slice::from_raw_parts(input as *const u8, len) };
let stderr = STDERR.lock().expect("Mutex has been poisoned");
Expand Down

0 comments on commit 9629b16

Please sign in to comment.