aboutsummaryrefslogtreecommitdiff
path: root/src/compare_hkl.c
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2010-03-27 13:12:51 +0100
committerThomas White <taw@bitwiz.org.uk>2010-03-27 13:12:51 +0100
commitbdd2a7b4a8a5456a023d54be6fd5d6a011314c7e (patch)
tree3d13a13a57e724ed94505b3b919d40e18c095cc6 /src/compare_hkl.c
parenta6e064b18ed513d341d8793acbc485d7bc291827 (diff)
Allow molecule_factor() to tell when it doesn't know the intensity
Diffstat (limited to 'src/compare_hkl.c')
-rw-r--r--src/compare_hkl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compare_hkl.c b/src/compare_hkl.c
index 68920a55..50ca6282 100644
--- a/src/compare_hkl.c
+++ b/src/compare_hkl.c
@@ -98,12 +98,12 @@ int main(int argc, char *argv[])
}
cell = load_cell_from_pdb("molecule.pdb");
- ref1 = read_reflections(afile);
+ ref1 = read_reflections(afile, NULL);
if ( ref1 == NULL ) {
ERROR("Couldn't open file '%s'\n", afile);
return 1;
}
- ref2 = read_reflections(bfile);
+ ref2 = read_reflections(bfile, NULL);
if ( ref2 == NULL ) {
ERROR("Couldn't open file '%s'\n", bfile);
return 1;