[libcamera-devel] [PATCH 3/4] cam: fix printing of camera name

Niklas Söderlund niklas.soderlund at ragnatech.se
Wed Feb 20 15:37:35 CET 2019


Since commit c8c546fe99a343c1 ("cam: options: Add option type handling
to options parser") introduced type handling for options the context the
option is read became important. When reading the camera option for
printing there is no explicit context to print it as a string and
instead the int context was chosen resulting in:

    $ cam --camera foo
    Camera 0 not found

While the expected output is:

    $ cam --camera foo
    Camera foo not found

Fix this by providing the correct context for the camera option when
printing it.

Signed-off-by: Niklas Söderlund <niklas.soderlund at ragnatech.se>
---
 src/cam/main.cpp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/cam/main.cpp b/src/cam/main.cpp
index 30267970a2c8485f..522d2f0d3373dc25 100644
--- a/src/cam/main.cpp
+++ b/src/cam/main.cpp
@@ -233,7 +233,8 @@ int main(int argc, char **argv)
 	if (options.isSet(OptCamera)) {
 		camera = cm->get(options[OptCamera]);
 		if (!camera) {
-			std::cout << "Camera " << options[OptCamera]
+			std::cout << "Camera "
+				  << std::string(options[OptCamera])
 				  << " not found" << std::endl;
 			goto out;
 		}
-- 
2.20.1



More information about the libcamera-devel mailing list