aboutsummaryrefslogtreecommitdiff
path: root/src/voice/streamer.rs
diff options
context:
space:
mode:
authorZeyla Hellyer <[email protected]>2018-06-17 15:53:09 -0700
committerZeyla Hellyer <[email protected]>2018-06-17 15:53:09 -0700
commit6ddfef8359a619be9a49be7b33b466724eed0ecb (patch)
tree5fb9c070b1650b95aa6b5713b3630fc253095275 /src/voice/streamer.rs
parentFix Args test (diff)
downloadserenity-6ddfef8359a619be9a49be7b33b466724eed0ecb.tar.xz
serenity-6ddfef8359a619be9a49be7b33b466724eed0ecb.zip
Remove extraneous spaces at the end of lines
Diffstat (limited to 'src/voice/streamer.rs')
-rw-r--r--src/voice/streamer.rs18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/voice/streamer.rs b/src/voice/streamer.rs
index faf467c..bf77b1d 100644
--- a/src/voice/streamer.rs
+++ b/src/voice/streamer.rs
@@ -5,23 +5,23 @@ use std::{
ffi::OsStr,
fs::File,
io::{
- BufReader,
- ErrorKind as IoErrorKind,
- Read,
+ BufReader,
+ ErrorKind as IoErrorKind,
+ Read,
Result as IoResult
},
process::{
- Child,
- Command,
+ Child,
+ Command,
Stdio
},
result::Result as StdResult
};
use super::{
- AudioSource,
- AudioType,
- DcaError,
- DcaMetadata,
+ AudioSource,
+ AudioType,
+ DcaError,
+ DcaMetadata,
VoiceError
};