Skip to content

Commit 1446560

Browse files
committed
---
yaml --- r: 78697 b: refs/heads/try c: 744c462 h: refs/heads/master i: 78695: e233b0b v: v3
1 parent 1a01890 commit 1446560

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
refs/heads/master: 25ed29a0edb3d48fef843a0b818ee68faf2252da
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 60fba4d7d677ec098e6a43014132fe99f7547363
5-
refs/heads/try: 8d997fba1a035b20d208c588cb267385dea74f6c
5+
refs/heads/try: 744c46225e09bad815b7807ca660cbdbcf187443
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c

branches/try/src/libstd/rt/uv/file.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ impl FsRequest {
5959
FsRequest::open_common(loop_, path, flags, mode, Some(cb));
6060
}
6161

62-
pub fn open_sync<P: PathLike>(loop_: &Loop, path: &P, flags: int, mode: int) -> Result<int, UvError> {
62+
pub fn open_sync<P: PathLike>(loop_: &Loop, path: &P, flags: int, mode: int)
63+
-> Result<int, UvError> {
6364
let result = FsRequest::open_common(loop_, path, flags, mode, None);
6465
sync_cleanup(loop_, result)
6566
}

branches/try/src/rt/rust_uv.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ rust_uv_loop_new() {
2727
// XXX libuv doesn't always ignore SIGPIPE even though we don't need it.
2828
#ifndef __WIN32__
2929
signal(SIGPIPE, SIG_IGN);
30-
#endif
30+
#endif
3131
return (void*)uv_loop_new();
3232
}
3333

0 commit comments

Comments
 (0)