[libcamera-devel] [PATCH 2/3] Documentation: application-developer: Use correct type to store size
Laurent Pinchart
laurent.pinchart at ideasonboard.com
Sun Sep 26 23:21:07 CEST 2021
The return type of std::vector::size() is size_t. Use the same type,
instead of unsigned int, to store its return value when retrieving the
number of allocated buffers.
Signed-off-by: Laurent Pinchart <laurent.pinchart at ideasonboard.com>
---
Documentation/guides/application-developer.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Documentation/guides/application-developer.rst b/Documentation/guides/application-developer.rst
index 3de13060db08..41a7d88369be 100644
--- a/Documentation/guides/application-developer.rst
+++ b/Documentation/guides/application-developer.rst
@@ -278,7 +278,7 @@ as the parameter of the ``FrameBufferAllocator::buffers()`` function.
return -ENOMEM;
}
- unsigned int allocated = allocator->buffers(cfg.stream()).size();
+ size_t allocated = allocator->buffers(cfg.stream()).size();
std::cout << "Allocated " << allocated << " buffers for stream" << std::endl;
}
--
Regards,
Laurent Pinchart
More information about the libcamera-devel
mailing list