From 87368c8e4fa9738f4825ad49db50fc6f4fab768c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Barnab=C3=A1s=20P=C5=91cze?= Date: Fri, 8 Mar 2024 23:29:22 +0100 Subject: [PATCH] spa: libcamera: remove wrong prefix from log message --- spa/plugins/libcamera/libcamera-utils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spa/plugins/libcamera/libcamera-utils.cpp b/spa/plugins/libcamera/libcamera-utils.cpp index 970bbd4f9..e08afac4b 100644 --- a/spa/plugins/libcamera/libcamera-utils.cpp +++ b/spa/plugins/libcamera/libcamera-utils.cpp @@ -763,7 +763,7 @@ mmap_init(struct impl *impl, struct port *port, } else if (d[0].type & (1u << SPA_DATA_MemPtr)) { port->memtype = SPA_DATA_MemPtr; } else { - spa_log_error(impl->log, "v4l2: can't use buffers of type %d", d[0].type); + spa_log_error(impl->log, "can't use buffers of type %d", d[0].type); return -EINVAL; } }