aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/pciconf
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2001-05-31 05:57:49 +0000
committerWarner Losh <imp@FreeBSD.org>2001-05-31 05:57:49 +0000
commit107054204b77082772efa7db973a840ed519f66d (patch)
tree8c848ce8354c61bbf0d3e3b604f0c60697426f3b /usr.sbin/pciconf
parent56578b06a09bf0c8c01a29e986d0d5aafca8b5b8 (diff)
downloadsrc-107054204b77082772efa7db973a840ed519f66d.tar.gz
src-107054204b77082772efa7db973a840ed519f66d.zip
Notes
Diffstat (limited to 'usr.sbin/pciconf')
-rw-r--r--usr.sbin/pciconf/pciconf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/pciconf/pciconf.c b/usr.sbin/pciconf/pciconf.c
index d5e355bec7c2..27e5cd36bade 100644
--- a/usr.sbin/pciconf/pciconf.c
+++ b/usr.sbin/pciconf/pciconf.c
@@ -138,13 +138,13 @@ main(int argc, char **argv)
if (listmode) {
list_devs(verbose);
- } else if(attachedmode) {
+ } else if (attachedmode) {
chkattached(argv[optind],
byte ? 1 : isshort ? 2 : 4);
- } else if(readmode) {
+ } else if (readmode) {
readit(argv[optind], argv[optind + 1],
byte ? 1 : isshort ? 2 : 4);
- } else if(writemode) {
+ } else if (writemode) {
writeit(argv[optind], argv[optind + 1], argv[optind + 2],
byte ? 1 : isshort ? 2 : 4);
} else {