diff options
author | imp <imp@FreeBSD.org> | 2001-05-31 05:57:49 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2001-05-31 05:57:49 +0000 |
commit | 7868dce32dcb88fdc8ef63b40704a094daf29de8 (patch) | |
tree | 4e140a6a79b498718db90a2d302b91eccf0654c1 /usr.sbin/pciconf | |
parent | d762ae38679bc7f9c9d1388064532b73560aa06e (diff) | |
download | FreeBSD-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.c | 6 |
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 { |