aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2010-01-15 09:36:24 +0100
committerThomas White <taw@physics.org>2010-01-15 09:36:24 +0100
commit8a1980e7052d6c431b638c2a3380a7efbfe23dca (patch)
tree159796dd87fe50b2f849cb4599a7b02faa7c1d2a
parent4400739e74b8f4f37c1bdc64ed16022103a2089b (diff)
File handling fixes
-rw-r--r--src/pattern_sim.c4
-rw-r--r--src/sfac.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/src/pattern_sim.c b/src/pattern_sim.c
index 9a00b5d7..255ba736 100644
--- a/src/pattern_sim.c
+++ b/src/pattern_sim.c
@@ -256,6 +256,10 @@ int main(int argc, char *argv[])
image.hdr = NULL;
get_diffraction(&image, na, nb, nc);
+ if ( image.molecule == NULL ) {
+ ERROR("Couldn't open molecule.pdb\n");
+ return 1;
+ }
record_image(&image, !config_nowater, !config_nonoise,
!config_nobloom);
diff --git a/src/sfac.c b/src/sfac.c
index fc174c39..7192f670 100644
--- a/src/sfac.c
+++ b/src/sfac.c
@@ -333,7 +333,7 @@ struct molecule *load_molecule()
fh = fopen("molecule.pdb", "r");
if ( fh == NULL ) {
- ERROR("Couldn't open file\n");
+ ERROR("Couldn't open PDB file\n");
return NULL;
}