diff options
author | Thomas White <taw@physics.org> | 2013-10-11 16:34:08 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2013-10-11 16:34:08 +0200 |
commit | 2bc46bfb4e2427683f968617e79d23482968f7de (patch) | |
tree | 3b2b5232a9afecbb80b9a45a3a656280073046ef /src | |
parent | 7bc9b76fa1a520b0669eeb9f9966a7895fe04d79 (diff) |
partialator: Initialise n_filt to zero
Diffstat (limited to 'src')
-rw-r--r-- | src/partialator.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/partialator.c b/src/partialator.c index eea0e485..d6f3f55f 100644 --- a/src/partialator.c +++ b/src/partialator.c @@ -643,6 +643,7 @@ int main(int argc, char *argv[]) srdata.crystals = crystals; srdata.n = n_crystals; srdata.full = full; + srdata.n_filtered = 0; sr = sr_titlepage(crystals, n_crystals, "scaling-report.pdf", infile, cmdline); |