syntax: space after comma

This commit is contained in:
thiolliere 2016-10-02 14:19:58 +02:00
parent f822631bc4
commit 1b0c9f2c54
1 changed files with 2 additions and 2 deletions

View File

@ -629,7 +629,7 @@ impl Voice {
pub fn play(&mut self) {
// If it was paused then we resume and signal
// FIXME: the signal is send even if the event loop wasn't waiting for resume, is that an issue ?
if self.inner.is_paused.swap(false,Ordering::Relaxed) {
if self.inner.is_paused.swap(false, Ordering::Relaxed) {
unsafe {
let buf = 1u64;
let wret = libc::write(self.inner.resume_signal,
@ -641,7 +641,7 @@ impl Voice {
#[inline]
pub fn pause(&mut self) {
self.inner.is_paused.store(true,Ordering::Relaxed);
self.inner.is_paused.store(true, Ordering::Relaxed);
}
}