We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 084e0c7 commit c8f2d56Copy full SHA for c8f2d56
src/stream.rs
@@ -322,7 +322,10 @@ impl OutputStream {
322
assert!(sz > 0, "fixed buffer size is greater than zero");
323
}
324
assert!(config.sample_rate > 0, "sample rate is greater than zero");
325
- assert!(config.channel_count > 0, "channel number is greater than zero");
+ assert!(
326
+ config.channel_count > 0,
327
+ "channel number is greater than zero"
328
+ );
329
330
331
fn open(
0 commit comments