about summary refs log tree commit diff
path: root/src/libstd/sys/redox/stdio.rs
diff options
context:
space:
mode:
authorJeremy Soller <jackpot51@gmail.com>2016-11-28 18:25:47 -0700
committerJeremy Soller <jackpot51@gmail.com>2016-11-28 18:25:47 -0700
commit1d0bba8224686d054378bcc4e853798d56fdfecf (patch)
treee50c33389112f9b43f8b4b2f443f6120518a663a /src/libstd/sys/redox/stdio.rs
parent2ec21327f25e4646ce64a2e331bb4702cf96dc99 (diff)
downloadrust-1d0bba8224686d054378bcc4e853798d56fdfecf.tar.gz
rust-1d0bba8224686d054378bcc4e853798d56fdfecf.zip
Move stdout/err flush into sys
Diffstat (limited to 'src/libstd/sys/redox/stdio.rs')
-rw-r--r--src/libstd/sys/redox/stdio.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/sys/redox/stdio.rs b/src/libstd/sys/redox/stdio.rs
index 1fe7e33a35e..aa8329bc283 100644
--- a/src/libstd/sys/redox/stdio.rs
+++ b/src/libstd/sys/redox/stdio.rs
@@ -73,7 +73,7 @@ impl io::Write for Stderr {
     }
 
     fn flush(&mut self) -> io::Result<()> {
-        cvt(syscall::fsync(2)).and(Ok(()))
+        Stderr::flush(self)
     }
 }