diff mbox

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

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

Commit Message

Ren, Yongjie June 24, 2013, 6:13 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(-)

--
1.7.9.5

--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
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