summaryrefslogtreecommitdiffstats
path: root/examples/udp-codec.rs
diff options
context:
space:
mode:
authorRick Richardson <rick.richardson@gmail.com>2016-11-20 11:55:57 -0800
committerRick Richardson <rick.richardson@gmail.com>2016-11-20 11:55:57 -0800
commitab3915d47d607a3e3585b8270d8ecb69d7a4249e (patch)
tree54ea9b802b02a50652fc1e15ec5d8852c0845840 /examples/udp-codec.rs
parent161811de8b59b66f156599807c779c89ba261817 (diff)
forgot a =
Diffstat (limited to 'examples/udp-codec.rs')
-rw-r--r--examples/udp-codec.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/udp-codec.rs b/examples/udp-codec.rs
index fd6d9874..230c98ff 100644
--- a/examples/udp-codec.rs
+++ b/examples/udp-codec.rs
@@ -108,7 +108,7 @@ fn main() {
//Now we instruct `reactor::Core` to iterate, processing events until its future, `SelectAll`
//has completed
- if let Err(e) core.run(wait) {
+ if let Err(e) = core.run(wait) {
error!("{}", e.0);
}
}