From 5471a0018b0394327c0cd4f1f60bf326632b29f1 Mon Sep 17 00:00:00 2001 From: Javier Martinez Canillas Date: Thu, 22 Jul 2021 20:09:34 +0200 Subject: [PATCH] libcamera: fix no-longer existent header inclusion The SPA plugin is including a header file, but this got renamed to to match the defined class name: ../spa/plugins/libcamera/libcamera_wrapper.cpp:52:10: fatal error: libcamera/buffer.h: No such file or directory 52 | #include | ^~~~~~~~~~~~~~~~~~~~ Fixes #1435 --- spa/plugins/libcamera/libcamera_wrapper.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spa/plugins/libcamera/libcamera_wrapper.cpp b/spa/plugins/libcamera/libcamera_wrapper.cpp index 58c062412..f25922eb1 100644 --- a/spa/plugins/libcamera/libcamera_wrapper.cpp +++ b/spa/plugins/libcamera/libcamera_wrapper.cpp @@ -49,7 +49,7 @@ #include #include #include -#include +#include #include #include