summaryrefslogtreecommitdiffstats
path: root/tools/args.h
diff options
context:
space:
mode:
authorJoe Thornber <thornber@redhat.com>2001-11-22 14:37:07 +0000
committerJoe Thornber <thornber@redhat.com>2001-11-22 14:37:07 +0000
commit60140607cfae39b9041ffa023e43ac28b282322d (patch)
treea0b52c3aee5936517f3391c8a943cef1d22ff981 /tools/args.h
parent3080a754451caa789400f143f4091df89c3c5416 (diff)
downloadlvm2-60140607cfae39b9041ffa023e43ac28b282322d.tar.gz
lvm2-60140607cfae39b9041ffa023e43ac28b282322d.tar.xz
lvm2-60140607cfae39b9041ffa023e43ac28b282322d.zip
o Make sure that every switch has a short option, even if it's
non-displayable so we can remove the pointer mangling that was breaking 64bit arch.s
Diffstat (limited to 'tools/args.h')
-rw-r--r--tools/args.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/args.h b/tools/args.h
index 74f96ea9..24107af3 100644
--- a/tools/args.h
+++ b/tools/args.h
@@ -62,7 +62,7 @@ xx(uuid_ARG, 'u', "uuid", NULL)
xx(uuidlist_ARG, 'U', "uuidlist", NULL)
xx(verbose_ARG, 'v', "verbose", NULL)
xx(volumegroup_ARG, 'V', "volumegroup", NULL)
-xx(version_ARG, '\0', "version", NULL)
+xx(version_ARG, (char) 0x1, "version", NULL)
xx(allocation_ARG, 'x', "allocation", yes_no_arg)
xx(yes_ARG, 'y', "yes", NULL)
xx(zero_ARG, 'Z', "zero", yes_no_arg)