From 51ea8aab2fd923fec3d8861cbfd623cad9bf69bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E4=BD=B3=E5=92=8C?= Date: Mon, 22 Jun 2026 17:39:46 +0800 Subject: [PATCH] Please replace the comma operator with the correct semicolon when setting `aec.name` and `aec.latency`. This will help avoid syntax errors and improve readability. Signed-off-by: liujiahe --- spa/plugins/aec/aec-webrtc.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spa/plugins/aec/aec-webrtc.cpp b/spa/plugins/aec/aec-webrtc.cpp index 67231c280..982edbadb 100644 --- a/spa/plugins/aec/aec-webrtc.cpp +++ b/spa/plugins/aec/aec-webrtc.cpp @@ -448,9 +448,9 @@ impl_init(const struct spa_handle_factory *factory, SPA_TYPE_INTERFACE_AUDIO_AEC, SPA_VERSION_AUDIO_AEC, &impl_aec, impl); - impl->aec.name = "webrtc", + impl->aec.name = "webrtc"; impl->aec.info = NULL; - impl->aec.latency = "480/48000", + impl->aec.latency = "480/48000"; impl->log = static_cast(spa_support_find(support, n_support, SPA_TYPE_INTERFACE_Log)); spa_log_topic_init(impl->log, &log_topic);