Skip to content

Commit 8a5545e

Browse files
committed
Fix long line.
1 parent c31a88c commit 8a5545e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/libcore/os.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -775,7 +775,8 @@ fn real_args() -> ~[~str] {
775775
while *ptr.offset(len) != 0 { len += 1; }
776776

777777
// Push it onto the list.
778-
vec::push(&mut args, vec::raw::form_slice(ptr, len, str::from_utf16));
778+
vec::push(&mut args, vec::raw::form_slice(ptr, len,
779+
str::from_utf16));
779780
}
780781
}
781782

0 commit comments

Comments
 (0)