File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: bc03121d7e6491256651e91c843f05934f312e0c
2
+ refs/heads/master: 1e13626caa058cec34ec643ff375355aec6ef151
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
4
refs/heads/snap-stage3: cd6f24f9d14ac90d167386a56e7a6ac1f0318195
5
5
refs/heads/try: ffbe0e0e00374358b789b0037bcb3a577cd218be
Original file line number Diff line number Diff line change @@ -599,8 +599,8 @@ fn buffered_file_writer(path: ~str) -> result<writer, ~str> {
599
599
fn stdout() -> writer { fd_writer(libc::STDOUT_FILENO as c_int, false) }
600
600
fn stderr() -> writer { fd_writer(libc::STDERR_FILENO as c_int, false) }
601
601
602
- fn print(s: ~ str) { stdout().write_str(s); }
603
- fn println(s: ~ str) { stdout().write_line(s); }
602
+ fn print(s: & str) { stdout().write_str(s); }
603
+ fn println(s: & str) { stdout().write_line(s); }
604
604
605
605
type mem_buffer = @{buf: dvec<u8>, mut pos: uint};
606
606
You can’t perform that action at this time.
0 commit comments