summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2023-01-19 01:30:02 +0100
committerGravatar Nikias Bassen2023-01-19 01:30:02 +0100
commitd400f2dd01538b074142b5c148338c40287728be (patch)
treea4d4308217d390cc865b83463107958ebe138227
parent7f6308f4b6c845d4f9502366c952db171ae28d45 (diff)
downloadlibplist-d400f2dd01538b074142b5c148338c40287728be.tar.gz
libplist-d400f2dd01538b074142b5c148338c40287728be.tar.bz2
xplist: Add missing newline to debug message
-rw-r--r--src/xplist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xplist.c b/src/xplist.c
index cf5d818..0a6be57 100644
--- a/src/xplist.c
+++ b/src/xplist.c
@@ -540,7 +540,7 @@ PLIST_API plist_err_t plist_to_xml(plist_t plist, char **plist_xml, uint32_t * l
strbuf_t *outbuf = str_buf_new(size);
if (!outbuf) {
- PLIST_XML_WRITE_ERR("Could not allocate output buffer");
+ PLIST_XML_WRITE_ERR("Could not allocate output buffer\n");
return PLIST_ERR_NO_MEM;
}