diff options
author | Thomas White <taw@physics.org> | 2020-06-08 17:10:37 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2020-07-29 18:53:44 +0200 |
commit | df4acdb43b3c713197f8d847587fa1e060692ba4 (patch) | |
tree | 51b50184c67f6f39a5618dbccffa9d3d6e347f9b /src/process_image.c | |
parent | 230113ea3ff6efb2a52b91138e6295801b62603a (diff) |
Convert indexamajig to new Stream API
Diffstat (limited to 'src/process_image.c')
-rw-r--r-- | src/process_image.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/process_image.c b/src/process_image.c index 5cc89d1b..24a93ce1 100644 --- a/src/process_image.c +++ b/src/process_image.c @@ -407,8 +407,8 @@ streamwrite: time_accounts_set(taccs, TACC_WRITESTREAM); set_last_task(last_task, "stream write"); sb_shared->pings[cookie]++; - ret = write_chunk(st, image, iargs->dtempl, - iargs->stream_peaks, iargs->stream_refls); + ret = stream_write_chunk(st, image, iargs->dtempl, + iargs->stream_flags); if ( ret != 0 ) { ERROR("Error writing stream file.\n"); } |