Skip to content

Commit

Permalink
fix: Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
rfdonnelly committed Aug 1, 2023
1 parent 76c8f38 commit af8e4b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ impl Cli {
#[cfg(not(unix))]
let virtual_ids = {
let virtual_ids: &[String] = &[];
virtual_ids.iter()
virtual_ids.iter().map(|virtual_id| virtual_id.as_str())
};
let physical_ids = self.physicals.iter().map(|physical| physical.id.as_str());

Expand Down

0 comments on commit af8e4b0

Please sign in to comment.