Skip to content

Commit 744c462

Browse files
committed
make check appeasement
1 parent 8d997fb commit 744c462

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

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
}

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)