about summary refs log tree commit diff
path: root/src/libstd/failure.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstd/failure.rs')
-rw-r--r--src/libstd/failure.rs8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/libstd/failure.rs b/src/libstd/failure.rs
index 58a41f4d7d5..89bccb8b99f 100644
--- a/src/libstd/failure.rs
+++ b/src/libstd/failure.rs
@@ -27,9 +27,11 @@ use str::Str;
 use string::String;
 
 // Defined in this module instead of io::stdio so that the unwinding
-thread_local!(pub static LOCAL_STDERR: RefCell<Option<Box<Writer + Send>>> = {
-    RefCell::new(None)
-})
+thread_local! {
+    pub static LOCAL_STDERR: RefCell<Option<Box<Writer + Send>>> = {
+        RefCell::new(None)
+    }
+}
 
 impl Writer for Stdio {
     fn write(&mut self, bytes: &[u8]) -> IoResult<()> {