diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2020-04-27 03:57:47 +0300 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2020-04-28 01:54:38 +0300 |
commit | 32810ff5e216d3b547b9ada7403c4580f0e70049 (patch) | |
tree | 9cad3c12e08c59912efa408503dcdfcbcdfde7d9 | |
parent | cc15ab43161b805bade5220e2769908d4ceefeff (diff) |
libcamera: ipa_proxy: Add missing space in info message
The message printed when loading a proxy worker from the build directory
is missing a space. Add it.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
-rw-r--r-- | src/libcamera/ipa_proxy.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcamera/ipa_proxy.cpp b/src/libcamera/ipa_proxy.cpp index 5fd88a4b..22b246be 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; |