Fix long line.

This commit is contained in:
Graydon Hoare 2012-10-02 16:32:45 -07:00
parent c31a88c7f4
commit 8a5545e9cd

View File

@ -775,7 +775,8 @@ fn real_args() -> ~[~str] {
while *ptr.offset(len) != 0 { len += 1; }
// Push it onto the list.
vec::push(&mut args, vec::raw::form_slice(ptr, len, str::from_utf16));
vec::push(&mut args, vec::raw::form_slice(ptr, len,
str::from_utf16));
}
}