Fix uninlined_format_args

cargo clippy --all --all-targets --fix -- -Wclippy::uninlined_format_args
This commit is contained in:
gwenn
2023-12-23 14:21:23 +01:00
parent 6663dac933
commit 3c3d7daeb4
3 changed files with 3 additions and 6 deletions

View File

@@ -34,7 +34,7 @@ fn main() -> Result<()> {
for person in rows {
match person {
Ok(p) => println!("ID: {}, Name: {}", p.id, p.name),
Err(e) => eprintln!("Error: {:?}", e),
Err(e) => eprintln!("Error: {e:?}"),
}
}