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

Kieran Bingham kieran.bingham at ideasonboard.com
Thu Nov 4 17:16:51 CET 2021


When applying I'll modify s/iscontiguous/isContiguous/ in the $SUBJECT
line.

--
KB

Quoting Kieran Bingham (2021-11-04 11:13:47)
> 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