Skip to content

Commit

Permalink
style(inoculate): fix missing const lifetime (#468)
Browse files Browse the repository at this point in the history
  • Loading branch information
hawkw committed Jan 21, 2024
1 parent c5e1354 commit b8bd91a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inoculate/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ impl Paths {
// === impl BootloaderOptions ===

impl BootloaderOptions {
const ARG_GROUP: &str = "boot-opts";
const ARG_GROUP: &'static str = "boot-opts";

fn boot_config(&self) -> bootloader_boot_config::BootConfig {
let mut bootcfg = bootloader::BootConfig::default();
Expand Down

0 comments on commit b8bd91a

Please sign in to comment.