From 477798fcac9390860172d42ae48b881f60988240 Mon Sep 17 00:00:00 2001 From: thorpej Date: Fri, 14 Sep 2001 17:28:36 +0000 Subject: [PATCH] Fix missing : in a getopt() string. --- usr.sbin/pcictl/pcictl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.sbin/pcictl/pcictl.c b/usr.sbin/pcictl/pcictl.c index 8a22f3edfed8..2f400b2f1e64 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);