Fix type-casting error for armv6 platforms

This commit is contained in:
Brian Schwind 2020-04-11 16:53:25 +09:00
parent f3e7c46205
commit c5e1ea5919
1 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
extern crate alsa_sys as alsa;
extern crate libc;
use self::libc::c_long;
use crate::{
BackendSpecificError, BuildStreamError, ChannelCount, Data, DefaultStreamConfigError,
DeviceNameError, DevicesError, PauseStreamError, PlayStreamError, SampleFormat, SampleRate,
@ -763,7 +764,7 @@ fn process_output(
available_frames as alsa::snd_pcm_uframes_t,
)
};
if result == -libc::EPIPE as i64 {
if result == -libc::EPIPE as c_long {
// buffer underrun
// TODO: Notify the user of this.
unsafe { alsa::snd_pcm_recover(stream.channel, result as i32, 0) };