Skip to content

Commit

Permalink
Fix build for Linux arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
helgoboss committed Dec 29, 2024
1 parent 37644f9 commit fce3986
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main/src/infrastructure/plugin/helgobox_plugin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ impl HelgoboxPlugin {
let mut bytes = instance_id_c_string
.as_bytes_with_nul()
.iter()
.map(|v| *v as i8);
.map(|v| *v as c_char);
buffer[0..bytes.len()].fill_with(|| bytes.next().unwrap());
Ok(())
}
Expand Down

0 comments on commit fce3986

Please sign in to comment.