From c3959c6e44f38b8750d66a5b7eec6a35ba69950c Mon Sep 17 00:00:00 2001 From: Philipp Middendorf Date: Thu, 2 Mar 2023 09:02:04 +0100 Subject: get_hkl: fix --input long argument The help string indicated that get_hkl --input=foobar.hkl works, but it didn't. --- src/get_hkl.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src') diff --git a/src/get_hkl.c b/src/get_hkl.c index 82bf5815..1523474e 100644 --- a/src/get_hkl.c +++ b/src/get_hkl.c @@ -478,6 +478,7 @@ int main(int argc, char *argv[]) /* Long options */ const struct option longopts[] = { {"help", 0, NULL, 'h'}, + {"input", 1, NULL, 'i'}, {"version", 0, NULL, 5 }, {"template", 1, NULL, 't'}, {"poisson", 0, &config_poisson, 1}, -- cgit v1.2.3