diff options
author | Harald Welte <laforge@osmocom.org> | 2019-12-03 21:35:02 +0100 |
---|---|---|
committer | Harald Welte <laforge@osmocom.org> | 2019-12-03 21:35:48 +0100 |
commit | f7404bb4731be116185c1ee9aa6c8e9dd0a90663 (patch) | |
tree | 38a0eb4d2415b7ba2875755b0d98a75270b8c2c4 | |
parent | 24277b4db52c1d48a5bb09a20eeb824f7dc98345 (diff) |
osmo-arfcn: Fix '-h' option
Change-Id: I13decca25dcdb75191c1e78058704ae8efa69b33
-rw-r--r-- | utils/osmo-arfcn.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/osmo-arfcn.c b/utils/osmo-arfcn.c index aee132c7..50878423 100644 --- a/utils/osmo-arfcn.c +++ b/utils/osmo-arfcn.c @@ -100,7 +100,7 @@ int main(int argc, char **argv) char *param; enum program_mode mode = MODE_NONE; - while ((opt = getopt(argc, argv, "pa:f:ud")) != -1) { + while ((opt = getopt(argc, argv, "pa:f:udh")) != -1) { switch (opt) { case 'p': pcs = 1; |