aboutsummaryrefslogtreecommitdiff
path: root/libcrystfel/src/indexers
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2021-08-20 12:27:04 +0200
committerThomas White <taw@physics.org>2021-08-20 12:27:04 +0200
commit4adad5b339599dd59246090e3fc8b9b6cfa54b25 (patch)
treea1e8d212686518ac2a9704e107a2731ed6279345 /libcrystfel/src/indexers
parentfdde4f225a2c84ecb4b32567d742cd5cb821a05a (diff)
Mosflm: Add -n option when probing
Diffstat (limited to 'libcrystfel/src/indexers')
-rw-r--r--libcrystfel/src/indexers/mosflm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libcrystfel/src/indexers/mosflm.c b/libcrystfel/src/indexers/mosflm.c
index e77f6384..1bd53119 100644
--- a/libcrystfel/src/indexers/mosflm.c
+++ b/libcrystfel/src/indexers/mosflm.c
@@ -877,8 +877,8 @@ const char *mosflm_probe(UnitCell *cell)
t.c_lflag &= ~(ECHO | ECHOE | ECHOK | ECHONL);
tcsetattr(STDIN_FILENO, TCSANOW, &t);
- execlp("mosflm", "mosflm", (char *)NULL);
- execlp("ipmosflm", "ipmosflm", (char *)NULL);
+ execlp("mosflm", "mosflm", "-n", (char *)NULL);
+ execlp("ipmosflm", "ipmosflm", "-n", (char *)NULL);
_exit(1);
}