summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2019-12-23 14:40:52 +0100
committerMatthias Beyer <mail@beyermatthias.de>2019-12-23 15:43:48 +0100
commit1b96686e8b409e8ca9eebe10189bf588cebb88d2 (patch)
tree7150fb2d167ab6c1f7d06c00c553b5d50c05f32e
parent2d258c3e914cae275a16699107b8883fe25c3500 (diff)
Remove lifetime specification
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
-rw-r--r--bin/domain/imag-todo/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/domain/imag-todo/src/lib.rs b/bin/domain/imag-todo/src/lib.rs
index 9af20181..66505e1d 100644
--- a/bin/domain/imag-todo/src/lib.rs
+++ b/bin/domain/imag-todo/src/lib.rs
@@ -395,7 +395,7 @@ fn show(rt: &Runtime) -> Result<()> {
fn show_with_table<'a, I>(rt: &Runtime, iter: I) -> Result<()>
where I: Iterator<Item = FileLockEntry<'a>>
{
- const HEADER: &'static [&'static str] = &[
+ const HEADER: &[&str] = &[
"uuid",
"status",
"sched",