summaryrefslogtreecommitdiff
path: root/usr.sbin/pcictl
diff options
context:
space:
mode:
authorthorpej <thorpej@NetBSD.org>2001-09-14 17:28:36 +0000
committerthorpej <thorpej@NetBSD.org>2001-09-14 17:28:36 +0000
commit477798fcac9390860172d42ae48b881f60988240 (patch)
tree84295f024236dfbc46c0e5e0b8aa478c5cd7fd50 /usr.sbin/pcictl
parent1877683f2bb3ea6dd3a5b38be2fbd68fae181af7 (diff)
Fix missing : in a getopt() string.
Diffstat (limited to 'usr.sbin/pcictl')
-rw-r--r--usr.sbin/pcictl/pcictl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/pcictl/pcictl.c b/usr.sbin/pcictl/pcictl.c
index 8a22f3edfed..2f400b2f1e6 100644
--- a/usr.sbin/pcictl/pcictl.c
+++ b/usr.sbin/pcictl/pcictl.c
@@ -1,4 +1,4 @@
-/* $NetBSD: pcictl.c,v 1.1 2001/09/13 23:51:04 thorpej Exp $ */
+/* $NetBSD: pcictl.c,v 1.2 2001/09/14 17:28:36 thorpej Exp $ */
/*
* Copyright 2001 Wasabi Systems, Inc.
@@ -196,7 +196,7 @@ cmd_dump(int argc, char *argv[])
func = 0;
dev = -1;
- while ((ch = getopt(argc, argv, "b:d:f")) != -1) {
+ while ((ch = getopt(argc, argv, "b:d:f:")) != -1) {
switch (ch) {
case 'b':
bus = parse_bdf(optarg);