From 7868dce32dcb88fdc8ef63b40704a094daf29de8 Mon Sep 17 00:00:00 2001 From: imp Date: Thu, 31 May 2001 05:57:49 +0000 Subject: [PATCH] Minor style(9) tweak: if ( instead of if(. --- usr.sbin/pciconf/pciconf.c | 6 +++--- 1 file 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 {