From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35658) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cOzmH-0001gM-AN for qemu-devel@nongnu.org; Wed, 04 Jan 2017 23:35:50 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cOzmE-0001PD-2a for qemu-devel@nongnu.org; Wed, 04 Jan 2017 23:35:49 -0500 Received: from mx0b-001b2d01.pphosted.com ([148.163.158.5]:33539 helo=mx0a-001b2d01.pphosted.com) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cOzmD-0001Ob-OD for qemu-devel@nongnu.org; Wed, 04 Jan 2017 23:35:45 -0500 Received: from pps.filterd (m0098414.ppops.net [127.0.0.1]) by mx0b-001b2d01.pphosted.com (8.16.0.17/8.16.0.17) with SMTP id v054XmNQ022160 for ; Wed, 4 Jan 2017 23:35:45 -0500 Received: from e23smtp09.au.ibm.com (e23smtp09.au.ibm.com [202.81.31.142]) by mx0b-001b2d01.pphosted.com with ESMTP id 27s8d0xhu9-1 (version=TLSv1.2 cipher=AES256-SHA bits=256 verify=NOT) for ; Wed, 04 Jan 2017 23:35:44 -0500 Received: from localhost by e23smtp09.au.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Thu, 5 Jan 2017 14:35:42 +1000 From: "Alastair D'Silva" Date: Thu, 5 Jan 2017 15:34:27 +1100 In-Reply-To: <20170105043430.3176-1-alastair@au1.ibm.com> References: <20170105043430.3176-1-alastair@au1.ibm.com> Message-Id: <20170105043430.3176-5-alastair@au1.ibm.com> Subject: [Qemu-devel] [PATCH v5 4/7] qtest: Fix whitespace List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-arm , QEMU Developers Cc: Peter Maydell , =?UTF-8?q?C=C3=A9dric=20Le=20Goater?= , Andrew Jeffery , Joel Stanley , Alastair D'Silva From: Alastair D'Silva Fix 2 cases of incorrect indentation Signed-off-by: Alastair D'Silva --- qtest.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qtest.c b/qtest.c index a947892..143077e 100644 --- a/qtest.c +++ b/qtest.c @@ -309,7 +309,7 @@ static void qtest_process_command(CharBackend *chr, gchar **words) if (!dev) { qtest_send_prefix(chr); qtest_send(chr, "FAIL Unknown device\n"); - return; + return; } if (irq_intercept_dev) { @@ -319,7 +319,7 @@ static void qtest_process_command(CharBackend *chr, gchar **words) } else { qtest_send(chr, "OK\n"); } - return; + return; } QLIST_FOREACH(ngl, &dev->gpios, node) { -- 2.9.3