diff options
| author | J08nY | 2017-10-14 13:51:47 +0200 |
|---|---|---|
| committer | J08nY | 2017-10-14 13:51:47 +0200 |
| commit | 4dece41c236a7e92ab04205e8b6e076a2514a528 (patch) | |
| tree | 81d01f854049a588cdd510deda3fc08a8f2e08c0 /src/io/output.c | |
| parent | 80514f24dae8352f39f9a9e49c0d9afbd8edd432 (diff) | |
| download | ecgen-4dece41c236a7e92ab04205e8b6e076a2514a528.tar.gz ecgen-4dece41c236a7e92ab04205e8b6e076a2514a528.tar.zst ecgen-4dece41c236a7e92ab04205e8b6e076a2514a528.zip | |
Diffstat (limited to 'src/io/output.c')
| -rw-r--r-- | src/io/output.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/io/output.c b/src/io/output.c index 2b6358f..01332b2 100644 --- a/src/io/output.c +++ b/src/io/output.c @@ -250,9 +250,7 @@ char *output_sjson(curve_t *curve) { return result; } -char *output_sjson_separator() { - return output_malloc(",\n"); -} +char *output_sjson_separator() { return output_malloc(",\n"); } char *output_sjson_begin() { return output_malloc("[\n"); } @@ -266,9 +264,7 @@ void output_f(FILE *out, curve_t *curve) { } } -void output_o(curve_t *curve) { - output_f(out, curve); -} +void output_o(curve_t *curve) { output_f(out, curve); } void output_f_separator(FILE *out) { char *s = output_s_separator(); |
