From 13bf2ddac70aa3a5da51fa410d9d93e6a24a54b5 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Tue, 12 May 2026 10:53:10 -0400 Subject: Missing temp file is a warning, not an error --- src/lib/core/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/lib/core/utils.c b/src/lib/core/utils.c index 72ecfc9..66d1511 100644 --- a/src/lib/core/utils.c +++ b/src/lib/core/utils.c @@ -658,7 +658,7 @@ int xml_pretty_print_in_place(const char *filename, const char *pretty_print_pro pretty_print_failed: if (tempfile && remove(tempfile)) { - SYSERROR("unable to remove temporary file: %s", tempfile); + SYSWARN("unable to remove temporary file: %s", tempfile); } guard_free(tempfile); guard_free(result); -- cgit