Skip to content

Commit

Permalink
Addressing clippy issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
gmartin82 committed Oct 15, 2024
1 parent 223909b commit b8a4f12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ fn main() {
#[cfg(all(target_os = "linux", not(feature = "iceoryx")))]
{
// Prefix = cyclors_<version>_
prefix = env::var("CARGO_PKG_VERSION").unwrap().replace(".", "_");
prefix = env::var("CARGO_PKG_VERSION").unwrap().replace('.', "_");
prefix.insert_str(0, "cyclors_");
prefix.push('_');

Expand Down

0 comments on commit b8a4f12

Please sign in to comment.