diff options
author | Thomas White <taw@physics.org> | 2017-08-31 12:51:33 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2017-08-31 12:51:33 +0200 |
commit | e4a8cd53ca3534a90ef4e8c78aea852bae05d88d (patch) | |
tree | 3c8887c85a9ea62a48bb0dbb77f9c650fe2e8399 /libcrystfel/src/felix.c | |
parent | 62898319b6c59e251685438e3a0ea77eacc8114b (diff) |
Set first argument when running external indexing programs
This makes sure they have names in process displays.
Diffstat (limited to 'libcrystfel/src/felix.c')
-rw-r--r-- | libcrystfel/src/felix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcrystfel/src/felix.c b/libcrystfel/src/felix.c index b531e3af..6daf4408 100644 --- a/libcrystfel/src/felix.c +++ b/libcrystfel/src/felix.c @@ -479,7 +479,7 @@ int felix_index(struct image *image, IndexingPrivate *ipriv) tcsetattr(STDIN_FILENO, TCSANOW, &t); STATUS("Running Felix '%s'\n", ini_filename); - execlp("Felix", "", ini_filename, (char *)NULL); + execlp("Felix", "Felix", ini_filename, (char *)NULL); ERROR("Failed to invoke Felix.\n"); _exit(0); |