Skip to content

Commit

Permalink
Merge pull request #48 from steveklabnik/master
Browse files Browse the repository at this point in the history
fail -> panic
  • Loading branch information
bvssvni committed Oct 30, 2014
2 parents 791a96d + ad47c41 commit 79d978a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/port_audio_back_end.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ impl StreamPA {
stream.audio_in(&in_buffer, settings);
},
Err(err) => {
fail!(format!("Portaudio error read : {}", pa::get_error_text(err)));
panic!(format!("Portaudio error read : {}", pa::get_error_text(err)));
}
}
}
Expand Down

0 comments on commit 79d978a

Please sign in to comment.