aboutsummaryrefslogtreecommitdiffstats
path: root/src/frame.rs
diff options
context:
space:
mode:
authorKostya Shishkov <kostya.shishkov@gmail.com>2018-10-19 17:28:32 +0200
committerKostya Shishkov <kostya.shishkov@gmail.com>2018-10-19 17:28:32 +0200
commit1a151e53b591a45fb7f009e480d7abb5e03f0cfe (patch)
treec65d172f71d2bb28e197cd6f2850761e6e504661 /src/frame.rs
parenta1f26d1be2a62dfe4db26e9a5faaf9199f6b0325 (diff)
downloadnihav-1a151e53b591a45fb7f009e480d7abb5e03f0cfe.tar.gz
trailing whitespace fixes
Diffstat (limited to 'src/frame.rs')
-rw-r--r--src/frame.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frame.rs b/src/frame.rs
index 628efb6..4aaf272 100644
--- a/src/frame.rs
+++ b/src/frame.rs
@@ -374,7 +374,7 @@ pub fn alloc_audio_buffer(ainfo: NAAudioInfo, nsamples: usize, chmap: NAChannelM
let mut data: Vec<u8> = Vec::with_capacity(length);
data.resize(length, 0);
let buf: NAAudioBuffer<u8> = NAAudioBuffer { data: Rc::new(RefCell::new(data)), info: ainfo, offs: offs, chmap: chmap, len: nsamples };
- Ok(NABufferType::AudioPacked(buf))
+ Ok(NABufferType::AudioPacked(buf))
}
}