Skip to content

Commit 79d978a

Browse files
committed
Merge pull request #48 from steveklabnik/master
fail -> panic
2 parents 791a96d + ad47c41 commit 79d978a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/port_audio_back_end.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ impl StreamPA {
9595
stream.audio_in(&in_buffer, settings);
9696
},
9797
Err(err) => {
98-
fail!(format!("Portaudio error read : {}", pa::get_error_text(err)));
98+
panic!(format!("Portaudio error read : {}", pa::get_error_text(err)));
9999
}
100100
}
101101
}

0 commit comments

Comments
 (0)