diff options
author | Christopher Faylor <me@cgf.cx> | 2002-03-07 03:06:28 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-03-07 03:06:28 +0000 |
commit | b9262dd919ef97376743486e7b4a362409fdec20 (patch) | |
tree | 2abc8c8aa59169d6fe88533b3dce72963f680dac /winsup/utils/cygcheck.cc | |
parent | 6a34460970e5fcefad880aa48f8a9551e551d991 (diff) | |
download | cygnal-b9262dd919ef97376743486e7b4a362409fdec20.tar.gz cygnal-b9262dd919ef97376743486e7b4a362409fdec20.tar.bz2 cygnal-b9262dd919ef97376743486e7b4a362409fdec20.zip |
* cygcheck.cc (longopts): Use correct short option for --version.
Diffstat (limited to 'winsup/utils/cygcheck.cc')
-rw-r--r-- | winsup/utils/cygcheck.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/utils/cygcheck.cc b/winsup/utils/cygcheck.cc index f73ca860e..534246aa2 100644 --- a/winsup/utils/cygcheck.cc +++ b/winsup/utils/cygcheck.cc @@ -1240,7 +1240,7 @@ struct option longopts[] = { {"verbose", no_argument, NULL, 'v'}, {"keycheck", no_argument, NULL, 'k'}, {"help", no_argument, NULL, 'h'}, - {"version", no_argument, 0, 'z'}, + {"version", no_argument, 0, 'V'}, {0, no_argument, NULL, 0} }; |