diff options
-rw-r--r-- | libcrystfel/src/stream.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcrystfel/src/stream.c b/libcrystfel/src/stream.c index d8968891..313e25e4 100644 --- a/libcrystfel/src/stream.c +++ b/libcrystfel/src/stream.c @@ -1155,7 +1155,7 @@ int read_chunk_2(Stream *st, struct image *image, StreamReadFlags srf) image->bw = bw; } - if ( sscanf(line, "num_peaks = %lld %%", &num_peaks) == 1 ) { + if ( sscanf(line, "num_peaks = %lld", &num_peaks) == 1 ) { image->num_peaks = num_peaks; } |