aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/json.h
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-08-30 18:04:46 +0900
committernsfisis <nsfisis@gmail.com>2025-08-30 23:48:38 +0900
commit75193c09f1dfcb3c7c726e5492f973a43402e270 (patch)
treea276042945eab73eba5f0bf3cfdce0e298fb6de9 /src/json.h
parentd08eca233036108dc46406788adbcec1a97af86c (diff)
downloadducc-75193c09f1dfcb3c7c726e5492f973a43402e270.tar.gz
ducc-75193c09f1dfcb3c7c726e5492f973a43402e270.tar.zst
ducc-75193c09f1dfcb3c7c726e5492f973a43402e270.zip
fix: parsing macro syntax
Diffstat (limited to 'src/json.h')
-rw-r--r--src/json.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/json.h b/src/json.h
index b542f4a..b23dbc2 100644
--- a/src/json.h
+++ b/src/json.h
@@ -28,7 +28,7 @@ void jsonbuilder_string(JsonBuilder* b, const char* value);
do { \
JsonBuilder* _builder = jsonbuilder_new(); \
f(_builder, (x)); \
- fprintf(stderr, "%s", jsonbuilder_get_output(_builder)); \
+ fprintf(stderr, "%s\n", jsonbuilder_get_output(_builder)); \
} while (0)
#endif