diff options
author | Valerio Mariani <valerio.mariani@desy.de> | 2015-01-26 18:09:27 +0100 |
---|---|---|
committer | valerio.mariani@desy.de <vmariani@cfeld-valerio2.desy.de> | 2015-01-27 14:11:51 +0100 |
commit | 07fab90f63443a4b048008298ecad2c53a5276bc (patch) | |
tree | 6312208fccc48e59f288f98865df395f109054a1 /libcrystfel/src/stream.c | |
parent | 88cd2cfd80838dd57cf607ac0fa752665cae4c14 (diff) |
Fussiness
Diffstat (limited to 'libcrystfel/src/stream.c')
-rw-r--r-- | libcrystfel/src/stream.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libcrystfel/src/stream.c b/libcrystfel/src/stream.c index 3eb1d783..55ff73fe 100644 --- a/libcrystfel/src/stream.c +++ b/libcrystfel/src/stream.c @@ -1148,7 +1148,7 @@ int read_chunk_2(Stream *st, struct image *image, StreamReadFlags srf) } } - if (strncmp(line, "hdf5", 3) == 0 ) { + if ( strncmp(line, "hdf5", 3) == 0 ) { char **new_fields; @@ -1178,7 +1178,6 @@ int read_chunk_2(Stream *st, struct image *image, StreamReadFlags srf) } - if ( (srf & STREAM_READ_PEAKS) && strcmp(line, PEAK_LIST_START_MARKER) == 0 ) { |