[libcamera-devel] [PATCH] libcamera: framebuffer: Fix iscontiguous log message

Kieran Bingham kieran.bingham at ideasonboard.com
Thu Nov 4 12:13:47 CET 2021


The isContiguous debug message is inverted.
Correct the logic.

Reported-by: Roman Stratiienko <roman.o.stratiienko at globallogic.com>
Signed-off-by: Kieran Bingham <kieran.bingham at ideasonboard.com>
---
 src/libcamera/framebuffer.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/libcamera/framebuffer.cpp b/src/libcamera/framebuffer.cpp
index d44a98babd05..337ea1155a38 100644
--- a/src/libcamera/framebuffer.cpp
+++ b/src/libcamera/framebuffer.cpp
@@ -247,7 +247,7 @@ FrameBuffer::FrameBuffer(const std::vector<Plane> &planes, unsigned int cookie)
 	}
 
 	LOG(Buffer, Debug)
-		<< "Buffer is " << (isContiguous ? "not " : "") << "contiguous";
+		<< "Buffer is " << (isContiguous ? "" : "not ") << "contiguous";
 
 	_d()->isContiguous_ = isContiguous;
 }
-- 
2.30.2



More information about the libcamera-devel mailing list