diff options
author | Corey Richardson <corey@octayn.net> | 2017-09-24 08:34:58 -0400 |
---|---|---|
committer | Graham Northup <grahamnorthup@yahoo.com> | 2017-09-24 19:01:22 -0400 |
commit | 959fed1d8435070e39bd7b87c1e908f79b65add9 (patch) | |
tree | 971920997b0ecb58a141ed1d30546cb58975e9ff /src/main.rs | |
parent | 7eef21b3b90898f4ef05fa4220fde608cf55c6ab (diff) |
Fix compiler warnings
Some minor stuff, mostly. The features have been stable since 1.20
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs index 7f8e14e..fc15e53 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,7 +1,6 @@ use std::io; use std::io::*; -extern crate rand; extern crate synfone; use synfone::synth::*; use synfone::lang::*; @@ -30,7 +29,7 @@ fn main() { outbuf.reserve_exact(buf.size() - curlen); unsafe { outbuf.set_len(buf.size()); } buf.bytes(&mut outbuf); - out.write_all(&outbuf); + out.write_all(&outbuf).expect("failed to write to stdout"); counter += buf.len(); } } |