diff options
author | Thomas White <taw@physics.org> | 2022-05-31 14:27:31 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2022-05-31 14:29:06 +0200 |
commit | d6a67cc1d876be33cc0bceb2e064cc9721b81a1b (patch) | |
tree | d7caa6736b486ce0baeadfa5ff42dda584a9e93d /src | |
parent | 9ddf2feeffd29bf6bff376413832cd35e5cb3594 (diff) |
indexamajig: Fix JSON when not indexing/integrating
Fixes: https://gitlab.desy.de/thomas.white/crystfel/-/issues/68
Diffstat (limited to 'src')
-rw-r--r-- | src/indexamajig.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/indexamajig.c b/src/indexamajig.c index 75c7a2d5..81fb78ae 100644 --- a/src/indexamajig.c +++ b/src/indexamajig.c @@ -229,7 +229,7 @@ static void write_harvest_file(struct index_args *args, fprintf(fh, " },\n"); if ( args->ipriv == NULL ) { - fprintf(fh, " \"indexing\": null\n"); + fprintf(fh, " \"indexing\": null,\n"); fprintf(fh, " \"integration\": null\n"); } else { |