diff options
Diffstat (limited to 'src/get_hkl.c')
-rw-r--r-- | src/get_hkl.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/get_hkl.c b/src/get_hkl.c index 0240826c..29ff0786 100644 --- a/src/get_hkl.c +++ b/src/get_hkl.c @@ -110,6 +110,8 @@ int main(int argc, char *argv[]) char *output = NULL; unsigned int *counts; signed int h, k, l; + FILE *fh; + char *rval; /* Long options */ const struct option longopts[] = { @@ -154,7 +156,7 @@ int main(int argc, char *argv[]) mol = load_molecule(); get_reflections_cached(mol, eV_to_J(1790.0)); - ideal_ref = ideal_intensities(mol->reflections); + counts = new_list_count(); if ( template != NULL ) { |