1
0
mirror of https://github.com/sharkdp/bat.git synced 2025-09-09 06:42:26 +01:00

Fix clippy warnings with Rust 1.68

This commit is contained in:
Martin Nordholts
2023-03-14 21:19:14 +01:00
parent c5602f9766
commit 40a423905a
4 changed files with 6 additions and 6 deletions

View File

@@ -621,7 +621,7 @@ impl<'a> Printer for InteractivePrinter<'a> {
"{}\n{}",
as_terminal_escaped(
style,
&*format!("{}{}", self.ansi_style, line_buf),
&format!("{}{}", self.ansi_style, line_buf),
self.config.true_color,
self.config.colored_output,
self.config.use_italic_text,
@@ -647,7 +647,7 @@ impl<'a> Printer for InteractivePrinter<'a> {
"{}",
as_terminal_escaped(
style,
&*format!("{}{}", self.ansi_style, line_buf),
&format!("{}{}", self.ansi_style, line_buf),
self.config.true_color,
self.config.colored_output,
self.config.use_italic_text,