diff options
author | Nikias Bassen | 2023-01-19 01:30:02 +0100 |
---|---|---|
committer | Nikias Bassen | 2023-01-19 01:30:02 +0100 |
commit | d400f2dd01538b074142b5c148338c40287728be (patch) | |
tree | a4d4308217d390cc865b83463107958ebe138227 /src/xplist.c | |
parent | 7f6308f4b6c845d4f9502366c952db171ae28d45 (diff) | |
download | libplist-d400f2dd01538b074142b5c148338c40287728be.tar.gz libplist-d400f2dd01538b074142b5c148338c40287728be.tar.bz2 |
xplist: Add missing newline to debug message
Diffstat (limited to 'src/xplist.c')
-rw-r--r-- | src/xplist.c | 2 |
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; } |