From aa2dff4bd9ba36981c7ac9645159f507d6fcb136 Mon Sep 17 00:00:00 2001 From: rmliddle Date: Tue, 5 Feb 2019 23:08:45 +1100 Subject: [PATCH] Format os.rs --- vm/src/stdlib/os.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vm/src/stdlib/os.rs b/vm/src/stdlib/os.rs index 18a043407..4c54f5847 100644 --- a/vm/src/stdlib/os.rs +++ b/vm/src/stdlib/os.rs @@ -42,8 +42,8 @@ pub fn rust_file(raw_fileno: i64) -> File { use std::os::windows::io::FromRawHandle; //TODO: This is untested and (very) unsafe handling or - //raw pointers - This should be patched urgently by - //comparison to the cpython handling of the equivalent fileno + //raw pointers - This should be patched urgently by + //comparison to the cpython handling of the equivalent fileno //fields for windows unsafe { File::from_raw_handle(raw_fileno as *mut c_void) } }