Skip to content

Commit 6ad18eb

Browse files
committed
Fix rval of os_string_from_ptr
A trait cannot be returned, but only the corresponding object.
1 parent 8f4b7ad commit 6ad18eb

File tree

1 file changed

+1
-1
lines changed
  • src/libstd/sys/windows

1 file changed

+1
-1
lines changed

src/libstd/sys/windows/os.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ pub struct Args {
278278
cur: *mut *mut u16,
279279
}
280280

281-
unsafe fn os_string_from_ptr(ptr: *mut u16) -> OsStringExt {
281+
unsafe fn os_string_from_ptr(ptr: *mut u16) -> OsString {
282282
let mut len = 0;
283283
while *ptr.offset(len) != 0 { len += 1; }
284284

0 commit comments

Comments
 (0)