aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/json.h
diff options
context:
space:
mode:
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