diff options
author | Thomas White <taw@physics.org> | 2020-05-28 14:34:10 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2020-07-29 18:42:57 +0200 |
commit | c5424abc8fccfa6b205db45f0ae2d64a362f01f5 (patch) | |
tree | 98b6a331c27481b8648faa62733f26a50919897e /src/process_hkl.c | |
parent | ab352f28b1c9d2691e4f39730b0ad5adf056426b (diff) |
Convert stream to DataTemplate
Diffstat (limited to 'src/process_hkl.c')
-rw-r--r-- | src/process_hkl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/process_hkl.c b/src/process_hkl.c index 5aadda47..ec980db1 100644 --- a/src/process_hkl.c +++ b/src/process_hkl.c @@ -429,8 +429,8 @@ static int merge_all(Stream *st, RefList *model, RefList *reference, image.det = NULL; /* Get data from next chunk */ - rval = read_chunk_2(st, &image, STREAM_READ_REFLECTIONS | - STREAM_READ_UNITCELL); + rval = read_chunk(st, &image, NULL, + STREAM_READ_REFLECTIONS | STREAM_READ_UNITCELL); if ( rval ) break; n_images++; |