Remove extra newline in error log

Introduced in 149594f974 (Initial revision, 2005-09-20).
This commit is contained in:
Johannes Altmanninger
2026-02-03 11:31:14 +11:00
parent b8b36f3293
commit 56deaafb34

View File

@@ -592,10 +592,7 @@ fn throwing_main() -> i32 {
if res.is_err() {
flog!(
warning,
sprintf!(
"%s\n",
wgettext_fmt!("Error while reading file %s", path.to_string_lossy())
)
wgettext_fmt!("Error while reading file %s", path.to_string_lossy())
);
}
}