From patchwork Mon Apr 27 03:17:05 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 3555 Return-Path: Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 064C4601B8 for ; Mon, 27 Apr 2020 05:17:34 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="SbMNCNPL"; dkim-atps=neutral Received: from pendragon.bb.dnainternet.fi (81-175-216-236.bb.dnainternet.fi [81.175.216.236]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 914E172C for ; Mon, 27 Apr 2020 05:17:33 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1587957453; bh=X10g9cTC4AaPeazr5PZPuFoyA7YcMFRGtahHVMYJPcM=; h=From:To:Subject:Date:In-Reply-To:References:From; b=SbMNCNPLt3Kv4ar4wh5HU+iFICNhwZgRrKUD3Qyb7l+stj8B2GUg1iV6WCmMoY7YI IhRXJ4aIqflmdJQjl7mzLaZ5R4pL7vEbWt537lUgwO0woE5+paac/lW7zHGnvYvpTv Y0AaWRC5oIs7Kytyu/UrfcXyLEu5unZR+e1g1zXY= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Date: Mon, 27 Apr 2020 06:17:05 +0300 Message-Id: <20200427031713.14013-4-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.25.3 In-Reply-To: <20200427031713.14013-1-laurent.pinchart@ideasonboard.com> References: <20200427031713.14013-1-laurent.pinchart@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH 03/11] libcamera: ipa_proxy: Add missing space in info message X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Apr 2020 03:17:34 -0000 The message printed when loading a proxy worker from the build directory is missing a space. Add it. Signed-off-by: Laurent Pinchart Reviewed-by: Jacopo Mondi Reviewed-by: Jacopo Mondi --- src/libcamera/ipa_proxy.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcamera/ipa_proxy.cpp b/src/libcamera/ipa_proxy.cpp index 5fd88a4ba75e..22b246be5797 100644 --- a/src/libcamera/ipa_proxy.cpp +++ b/src/libcamera/ipa_proxy.cpp @@ -102,7 +102,7 @@ std::string IPAProxy::resolvePath(const std::string &file) const std::string ipaProxyDir = root + "src/libcamera/proxy/worker"; LOG(IPAProxy, Info) - << "libcamera is not installed. Loading proxy workers from'" + << "libcamera is not installed. Loading proxy workers from '" << ipaProxyDir << "'"; std::string proxyPath = ipaProxyDir + proxyFile;