aboutsummaryrefslogtreecommitdiff
path: root/src/mosflm.c
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2011-01-25 18:12:23 +0100
committerThomas White <taw@physics.org>2012-02-22 15:27:11 +0100
commit4cdabe2ffe4be188164a4b500980d5fdcfe9bd50 (patch)
tree00233ae430052cca3167a1316625629124309936 /src/mosflm.c
parentc3ccccbd10e0f8be6115cf9c3429bf5ef9fa413e (diff)
Fix MOSFLM messages
Diffstat (limited to 'src/mosflm.c')
-rw-r--r--src/mosflm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mosflm.c b/src/mosflm.c
index 080e93a9..4aa6d51b 100644
--- a/src/mosflm.c
+++ b/src/mosflm.c
@@ -122,14 +122,14 @@ static int read_newmat(const char *filename, struct image *image)
fh = fopen(filename, "r");
if ( fh == NULL ) {
- STATUS("Found NEWMAT file.\n");
+ STATUS("No NEWMAT file (autoindexing was unsuccessful).\n");
return 1;
}
n = fscanf(fh, "%f %f %f\n", &asx, &bsx, &csx);
n += fscanf(fh, "%f %f %f\n", &asy, &bsy, &csy);
n += fscanf(fh, "%f %f %f\n", &asz, &bsz, &csz);
if ( n != 9 ) {
- STATUS("<9 parameters.\n");
+ STATUS("Fewer than 9 parameters found in NEWMAT file.\n");
return 1;
}
fclose(fh);