diff options
| author | Jeff Olson <olson.jeffery@gmail.com> | 2013-08-22 16:33:59 -0700 |
|---|---|---|
| committer | Jeff Olson <olson.jeffery@gmail.com> | 2013-08-22 16:33:59 -0700 |
| commit | 744c46225e09bad815b7807ca660cbdbcf187443 (patch) | |
| tree | ee6eb45730a1d72ff3916dee104d3336e6a359e6 | |
| parent | 8d997fba1a035b20d208c588cb267385dea74f6c (diff) | |
make check appeasement
| -rw-r--r-- | src/libstd/rt/uv/file.rs | 3 | ||||
| -rw-r--r-- | src/rt/rust_uv.cpp | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/libstd/rt/uv/file.rs b/src/libstd/rt/uv/file.rs index 1a20ae82f17..405dfe0a7f0 100644 --- a/src/libstd/rt/uv/file.rs +++ b/src/libstd/rt/uv/file.rs @@ -59,7 +59,8 @@ impl FsRequest { FsRequest::open_common(loop_, path, flags, mode, Some(cb)); } - pub fn open_sync<P: PathLike>(loop_: &Loop, path: &P, flags: int, mode: int) -> Result<int, UvError> { + pub fn open_sync<P: PathLike>(loop_: &Loop, path: &P, flags: int, mode: int) + -> Result<int, UvError> { let result = FsRequest::open_common(loop_, path, flags, mode, None); sync_cleanup(loop_, result) } diff --git a/src/rt/rust_uv.cpp b/src/rt/rust_uv.cpp index f90931dbea9..8ef4572f810 100644 --- a/src/rt/rust_uv.cpp +++ b/src/rt/rust_uv.cpp @@ -27,7 +27,7 @@ rust_uv_loop_new() { // XXX libuv doesn't always ignore SIGPIPE even though we don't need it. #ifndef __WIN32__ signal(SIGPIPE, SIG_IGN); -#endif +#endif return (void*)uv_loop_new(); } |
