diff options
| author | Joseph Hunkeler <jhunkeler@gmail.com> | 2026-05-12 10:53:10 -0400 |
|---|---|---|
| committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2026-05-12 10:53:10 -0400 |
| commit | 13bf2ddac70aa3a5da51fa410d9d93e6a24a54b5 (patch) | |
| tree | d44e6dd20fa497ef84dfd6a4e8f3eb4072dab180 /src | |
| parent | 8217fc2354f4614ed64f7b5530fbc9d155b697b5 (diff) | |
| download | stasis-13bf2ddac70aa3a5da51fa410d9d93e6a24a54b5.tar.gz | |
Missing temp file is a warning, not an error
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/core/utils.c | 2 |
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); |
