summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs
index ce80d1b..e1dfc5d 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -6,6 +6,6 @@ use lib::RtlSdr;
fn main() {
println!("Running");
- let rtlsdr = RtlSdr::new();
- rtlsdr.find();
+ let mut rtlsdr = RtlSdr::new();
+ rtlsdr.init();
}