diff options
author | Jacopo Mondi <jacopo@jmondi.org> | 2021-11-19 10:19:51 +0100 |
---|---|---|
committer | Jacopo Mondi <jacopo@jmondi.org> | 2021-11-29 18:12:24 +0100 |
commit | 663b5d859fd479c2ff462c6555f37977444e035a (patch) | |
tree | 2a0ba32b7ade1ec5602a7d38ef43933b00aaafdf /test/camera/capture.cpp | |
parent | 22574ff19545d96e8f873081d51fde2682a12293 (diff) |
test: camera: Fix trivial spelling mistake
The error message should be:
"Failed to associate buffer with request"
Fix that.
Signed-off-by: Jacopo Mondi <jacopo@jmondi.org>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Diffstat (limited to 'test/camera/capture.cpp')
-rw-r--r-- | test/camera/capture.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/camera/capture.cpp b/test/camera/capture.cpp index 41ae00d7..f3824f95 100644 --- a/test/camera/capture.cpp +++ b/test/camera/capture.cpp @@ -109,7 +109,7 @@ protected: } if (request->addBuffer(stream, buffer.get())) { - cout << "Failed to associating buffer with request" << endl; + cout << "Failed to associate buffer with request" << endl; return TestFail; } |