summaryrefslogtreecommitdiffstats
path: root/usr.sbin/pciconf
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>2001-05-31 05:57:49 +0000
committerimp <imp@FreeBSD.org>2001-05-31 05:57:49 +0000
commit7868dce32dcb88fdc8ef63b40704a094daf29de8 (patch)
tree4e140a6a79b498718db90a2d302b91eccf0654c1 /usr.sbin/pciconf
parentd762ae38679bc7f9c9d1388064532b73560aa06e (diff)
downloadFreeBSD-src-7868dce32dcb88fdc8ef63b40704a094daf29de8.zip
FreeBSD-src-7868dce32dcb88fdc8ef63b40704a094daf29de8.tar.gz
Minor style(9) tweak: if ( instead of if(.
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 d5e355b..27e5cd3 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 {
OpenPOWER on IntegriCloud