s/puts/printf/

This commit is contained in:
Jan-Piet Mens
2015-09-01 13:59:11 +02:00
parent 4cb5d2f17f
commit f2a2f9cb4c

2
ocat.c
View File

@@ -255,7 +255,7 @@ int main(int argc, char **argv)
// }
js = json_stringify(obj, " ");
puts(js);
printf("%s\n", js);
free(js);
json_delete(obj);
}