diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-03-15 22:09:16 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-03-15 22:09:16 +0100 |
| commit | 4da55edd74ad72b204470d9def9ea29b1573a0db (patch) | |
| tree | e1b818f52de183a2f7660d4bc22431258cb95e37 | |
| parent | 7dbb2934e446844457f666173b48f5a0f91e2f32 (diff) | |
Fix getopt string.
| -rw-r--r-- | tools/dcpinfo.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/dcpinfo.cc b/tools/dcpinfo.cc index 1e0e6ebd..4897b21e 100644 --- a/tools/dcpinfo.cc +++ b/tools/dcpinfo.cc @@ -306,7 +306,7 @@ main (int argc, char* argv[]) { 0, 0, 0, 0 } }; - int c = getopt_long (argc, argv, "vhspdoAB:C:", long_options, &option_index); + int c = getopt_long (argc, argv, "vhspdo:AB:C:", long_options, &option_index); if (c == -1) { break; |
