Use rust idiom for listing radios

This commit is contained in:
Greg Shuflin 2021-03-01 02:57:53 -08:00
parent 7793870f59
commit 4f082277d8
1 changed files with 2 additions and 10 deletions

View File

@ -183,18 +183,10 @@ pub fn list() {
println!("Supported radios:");
unsafe {
let mut ptr = get_radio_tab();
loop {
let ident_ptr = (*ptr).ident;
if ident_ptr.is_null() {
break;
}
let name_ptr = (*(*ptr).device).name;
for (_, device) in RADIO_TABLE.iter() {
let name_ptr = (*device).name;
let name = CStr::from_ptr(name_ptr).to_str().unwrap().to_string();
println!(" {}", name);
ptr = ptr.offset(1);
}
}
}