diff options
author | Yaroslav Gevorkov <yaroslav.gevorkov@desy.de> | 2019-11-13 14:06:27 +0100 |
---|---|---|
committer | Yaroslav Gevorkov <yaroslav.gevorkov@desy.de> | 2019-11-13 14:11:59 +0100 |
commit | f91016824be876639265d991f47c10c899d00813 (patch) | |
tree | d33d8428e330fb04c9a03df2d360dda7fa34361a | |
parent | d7de985ab7d626f150da3f6fc0d66a16bcbc8c10 (diff) |
fix long variable names in argp_option
-rw-r--r-- | libcrystfel/src/pinkindexer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcrystfel/src/pinkindexer.c b/libcrystfel/src/pinkindexer.c index 645e22ed..cf3ecc94 100644 --- a/libcrystfel/src/pinkindexer.c +++ b/libcrystfel/src/pinkindexer.c @@ -579,9 +579,9 @@ static struct argp_option options[] = { {"pinkIndexer-reflection-radius", 10, "r", OPTION_HIDDEN, NULL}, - {"pinkIndexer-override-photon-energy", 11, "overriddenPhotonEnergy", OPTION_HIDDEN, NULL}, + {"pinkIndexer-override-photon-energy", 11, "ev", OPTION_HIDDEN, NULL}, - {"pinkIndexer-override-bandwidth", 12, "overridenBandwidth", OPTION_HIDDEN, NULL}, + {"pinkIndexer-override-bandwidth", 12, "bw", OPTION_HIDDEN, NULL}, {"pinkIndexer-override-visible-energy-range", 13, "overridenVisibleEnergyRange", OPTION_HIDDEN, NULL}, |