about summary refs log tree commit diff
path: root/src/libstd/rt
diff options
context:
space:
mode:
authorJeff Olson <olson.jeffery@gmail.com>2013-08-22 16:33:59 -0700
committerJeff Olson <olson.jeffery@gmail.com>2013-08-22 16:33:59 -0700
commit744c46225e09bad815b7807ca660cbdbcf187443 (patch)
treeee6eb45730a1d72ff3916dee104d3336e6a359e6 /src/libstd/rt
parent8d997fba1a035b20d208c588cb267385dea74f6c (diff)
downloadrust-744c46225e09bad815b7807ca660cbdbcf187443.tar.gz
rust-744c46225e09bad815b7807ca660cbdbcf187443.zip
make check appeasement
Diffstat (limited to 'src/libstd/rt')
-rw-r--r--src/libstd/rt/uv/file.rs3
1 files changed, 2 insertions, 1 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)
     }