software: fix typo in #[cfg]

This commit is contained in:
Ivan Molodetskikh 2017-06-14 12:20:31 +03:00 committed by meh
parent b67e4eb6d9
commit 6ad3d42482

View File

@ -22,7 +22,7 @@ pub fn converter((width, height): (u32, u32),
#[cfg(feature = "software-resampling")] #[cfg(feature = "software-resampling")]
pub mod resampling; pub mod resampling;
#[cfg(feature = "softare-resampling")] #[cfg(feature = "software-resampling")]
#[inline] #[inline]
pub fn resampler((in_format, in_layout, in_rate): (::format::Sample, ::ChannelLayout, u32), pub fn resampler((in_format, in_layout, in_rate): (::format::Sample, ::ChannelLayout, u32),
(out_format, out_layout, out_rate): (::format::Sample, ::ChannelLayout, u32)) (out_format, out_layout, out_rate): (::format::Sample, ::ChannelLayout, u32))