diff options
author | Nikias Bassen | 2023-01-19 01:25:10 +0100 |
---|---|---|
committer | Nikias Bassen | 2023-01-19 01:25:10 +0100 |
commit | 7f6308f4b6c845d4f9502366c952db171ae28d45 (patch) | |
tree | 1e709baa3d2212d33d96e30a336f2661a2cb301d /src/jplist.c | |
parent | 4c8844d2c55a1ec05fa50f5b76c0b8baeece134c (diff) | |
download | libplist-7f6308f4b6c845d4f9502366c952db171ae28d45.tar.gz libplist-7f6308f4b6c845d4f9502366c952db171ae28d45.tar.bz2 |
jplist: Add missing newline to debug message
Diffstat (limited to 'src/jplist.c')
-rw-r--r-- | src/jplist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jplist.c b/src/jplist.c index 7817b1c..3a38ba3 100644 --- a/src/jplist.c +++ b/src/jplist.c @@ -407,7 +407,7 @@ PLIST_API int plist_to_json(plist_t plist, char **json, uint32_t* length, int pr strbuf_t *outbuf = str_buf_new(size); if (!outbuf) { - PLIST_JSON_WRITE_ERR("Could not allocate output buffer"); + PLIST_JSON_WRITE_ERR("Could not allocate output buffer\n"); return PLIST_ERR_NO_MEM; } |