From patchwork Sun Aug 18 01:13:21 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 1843 Return-Path: Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 7C9ED60BE5 for ; Sun, 18 Aug 2019 03:13:42 +0200 (CEST) Received: from pendragon.bb.dnainternet.fi (dfj612yhrgyx302h3jwwy-3.rev.dnainternet.fi [IPv6:2001:14ba:21f5:5b00:ce28:277f:58d7:3ca4]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 0DC0D2AF for ; Sun, 18 Aug 2019 03:13:41 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1566090822; bh=AHm283RMqqXE9LDCjTE1mmhybUBrvdO6VyxbIpkq128=; h=From:To:Subject:Date:In-Reply-To:References:From; b=F/k0D7Wbh+UR5CNieTfXM8sBVN32kgSmtMssAwhYCzvKfLvQ7SYCehAd+fb1w6nLD YRLFG0+NyOluO8+0AC8jpnPT3lrC0vwh3gOh0KB6Ath1WEhf0kmAIuHlqvvx5KWsI/ wqMZPLwLbiCe1W1GmV7L6hMX4p7Ub9TnVh86iPSk= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Date: Sun, 18 Aug 2019 04:13:21 +0300 Message-Id: <20190818011329.14499-7-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.21.0 In-Reply-To: <20190818011329.14499-1-laurent.pinchart@ideasonboard.com> References: <20190818011329.14499-1-laurent.pinchart@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH 06/14] test: unixsocket: Fix typo in error message X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Aug 2019 01:13:43 -0000 Signed-off-by: Laurent Pinchart Reviewed-by: Jacopo Mondi --- test/ipc/unixsocket.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/ipc/unixsocket.cpp b/test/ipc/unixsocket.cpp index eeef64842a75..40a3a84a87d2 100644 --- a/test/ipc/unixsocket.cpp +++ b/test/ipc/unixsocket.cpp @@ -370,7 +370,7 @@ protected: /* Test reversing a string, this test sending only data. */ if (testReverse()) { - cerr << "Reveres array test failed" << endl; + cerr << "Reverse array test failed" << endl; return TestFail; }