diff mbox

[kvm-unit-tests,3/4] x86-run: keep constant coding style for the 'if' statement

Message ID 1B4B44D9196EFF41AE41FDA404FC0A1001B1E1B7@SHSMSX102.ccr.corp.intel.com (mailing list archive)
State New, archived
Headers show

Commit Message

Ren, Yongjie June 24, 2013, 8:49 a.m. UTC
x86-run: keep constant coding style for the 'if' statement

Signed-off-by: Yongjie Ren <yongjie.ren@intel.com>
---
 x86-run |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
diff mbox

Patch

diff --git a/x86-run b/x86-run
index daefd4a..6093a72 100755
--- a/x86-run
+++ b/x86-run
@@ -17,7 +17,8 @@  else
 	fi
 fi
 
-if ${qemu} -device '?' 2>&1 | fgrep pci-testdev > /dev/null;
+if
+	${qemu} -device '?' 2>&1 | fgrep pci-testdev > /dev/null;
 then
 	pci_testdev="-device pci-testdev"
 else