aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2026-05-12 10:53:10 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2026-05-12 10:53:10 -0400
commit13bf2ddac70aa3a5da51fa410d9d93e6a24a54b5 (patch)
treed44e6dd20fa497ef84dfd6a4e8f3eb4072dab180
parent8217fc2354f4614ed64f7b5530fbc9d155b697b5 (diff)
downloadstasis-13bf2ddac70aa3a5da51fa410d9d93e6a24a54b5.tar.gz
Missing temp file is a warning, not an error
-rw-r--r--src/lib/core/utils.c2
1 files changed, 1 insertions, 1 deletions
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);