aboutsummaryrefslogtreecommitdiff
path: root/src/event_loop.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/event_loop.rs')
-rw-r--r--src/event_loop.rs12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/event_loop.rs b/src/event_loop.rs
index 30732e2a..ce034ff0 100644
--- a/src/event_loop.rs
+++ b/src/event_loop.rs
@@ -179,12 +179,12 @@ impl<Io> EventLoop<Io>
let (tx, rx) = channel::channel();
EventLoop {
poll: mio::Poll::new().expect("create mio Poll"),
- pty: pty,
- tx: tx,
- rx: rx,
- terminal: terminal,
- display: display,
- ref_test: ref_test,
+ pty,
+ tx,
+ rx,
+ terminal,
+ display,
+ ref_test,
}
}