From d400f2dd01538b074142b5c148338c40287728be Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Thu, 19 Jan 2023 01:30:02 +0100 Subject: xplist: Add missing newline to debug message --- src/xplist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- cgit v1.1-32-gdbae