dmesg: remove unnecessary static lifetime specifier.

This commit is contained in:
Fuad Ismail
2024-11-15 20:05:05 +07:00
parent 9a13792127
commit 16b12c66f2

@ -37,8 +37,8 @@ pub fn uu_app() -> Command {
}
mod options {
pub const KMSG_FILE: &'static str = "kmsg-file";
pub const JSON: &'static str = "json";
pub const KMSG_FILE: &str = "kmsg-file";
pub const JSON: &str = "json";
}
struct Dmesg<'a> {