diff options
author | Thomas White <taw@physics.org> | 2010-01-15 09:36:24 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2010-01-15 09:36:24 +0100 |
commit | 8a1980e7052d6c431b638c2a3380a7efbfe23dca (patch) | |
tree | 159796dd87fe50b2f849cb4599a7b02faa7c1d2a /src | |
parent | 4400739e74b8f4f37c1bdc64ed16022103a2089b (diff) |
File handling fixes
Diffstat (limited to 'src')
-rw-r--r-- | src/pattern_sim.c | 4 | ||||
-rw-r--r-- | src/sfac.c | 2 |
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); @@ -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; } |