diff options
author | Thomas White <taw@physics.org> | 2021-03-26 18:30:26 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2021-03-26 18:30:26 +0100 |
commit | df7eb394372b363b95080ccac8f02f8bae9397f7 (patch) | |
tree | b0974d372f692f895450ab5202ca22876b7ef89b | |
parent | 4492142889d2f0967cd743e73722cde145879623 (diff) |
partialator: Add missing comma in JSON
-rw-r--r-- | src/partialator.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/partialator.c b/src/partialator.c index a24c5f03..13795c65 100644 --- a/src/partialator.c +++ b/src/partialator.c @@ -961,7 +961,7 @@ static void write_polarisation(FILE *fh, const char *name, fprintf(fh, " \"%s\": {\n", name); fprintf(fh, " \"angle_from_horizontal_deg\": %f,\n", rad2deg(p.angle)); fprintf(fh, " \"fraction\": %f\n", p.fraction); - fprintf(fh, " }\n"); + fprintf(fh, " },\n"); } static void write_harvest_file(const char *filename, |