diff options
author | Yin Kangkai <kangkai.yin@intel.com> | 2010-07-28 06:56:13 +0200 |
---|---|---|
committer | Kay Sievers <kay.sievers@vrfy.org> | 2010-07-28 06:56:13 +0200 |
commit | 163c0365ffbd9321d686e8c301c36ea50c98df2f (patch) | |
tree | be19eb8c661de939af23b6f30c59341340303517 /udev/udevadm-info.c | |
parent | efb27d646590660c766796fc314a291bdcd2b3e1 (diff) |
udevadm: fix short options in getopt()
Diffstat (limited to 'udev/udevadm-info.c')
-rw-r--r-- | udev/udevadm-info.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/udev/udevadm-info.c b/udev/udevadm-info.c index 14baa6accb..9bd60c7243 100644 --- a/udev/udevadm-info.c +++ b/udev/udevadm-info.c @@ -242,7 +242,7 @@ int udevadm_info(struct udev *udev, int argc, char *argv[]) int option; struct stat statbuf; - option = getopt_long(argc, argv, "aed:n:p:q:rxPVh", options, NULL); + option = getopt_long(argc, argv, "aed:n:p:q:rxP:Vh", options, NULL); if (option == -1) break; |