mirror of
https://github.com/alemidev/scope-tui.git
synced 2024-11-14 02:39:20 +01:00
fix: wrong module path on pulse source in main.rs
This fixes a compile error when building with the `pulseaudio` feature enabled.
This commit is contained in:
parent
b963aba7f9
commit
dbdbf15d99
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
|
|||
let source = match args.source {
|
||||
#[cfg(feature = "pulseaudio")]
|
||||
ScopeSource::Pulse { device, server_buffer } => {
|
||||
input::pulse::PulseAudioSimpleDataSource::new(device.as_deref(), &args.opts, server_buffer)?
|
||||
scope::input::pulse::PulseAudioSimpleDataSource::new(device.as_deref(), &args.opts, server_buffer)?
|
||||
},
|
||||
|
||||
#[cfg(feature = "file")]
|
||||
|
|
Loading…
Reference in a new issue