From 959fed1d8435070e39bd7b87c1e908f79b65add9 Mon Sep 17 00:00:00 2001 From: Corey Richardson Date: Sun, 24 Sep 2017 08:34:58 -0400 Subject: Fix compiler warnings Some minor stuff, mostly. The features have been stable since 1.20 --- src/main.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/main.rs') 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(); } } -- cgit v1.2.3-70-g09d2