From 7eee45ff4133de8cd055ee490c61c6b0163a08a4 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Wed, 17 Nov 2021 10:52:43 +0100 Subject: [PATCH] alsa: remove stray log line --- spa/plugins/alsa/alsa-pcm-sink.c | 1 + spa/plugins/alsa/alsa-seq-bridge.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/spa/plugins/alsa/alsa-pcm-sink.c b/spa/plugins/alsa/alsa-pcm-sink.c index f4d470b6c..a79fe8bd4 100644 --- a/spa/plugins/alsa/alsa-pcm-sink.c +++ b/spa/plugins/alsa/alsa-pcm-sink.c @@ -925,6 +925,7 @@ impl_init(const struct spa_handle_factory *factory, this->log = spa_support_find(support, n_support, SPA_TYPE_INTERFACE_Log); alsa_log_topic_init(this->log); + this->data_system = spa_support_find(support, n_support, SPA_TYPE_INTERFACE_DataSystem); this->data_loop = spa_support_find(support, n_support, SPA_TYPE_INTERFACE_DataLoop); diff --git a/spa/plugins/alsa/alsa-seq-bridge.c b/spa/plugins/alsa/alsa-seq-bridge.c index ad03adae8..ead78ea24 100644 --- a/spa/plugins/alsa/alsa-seq-bridge.c +++ b/spa/plugins/alsa/alsa-seq-bridge.c @@ -883,7 +883,7 @@ impl_init(const struct spa_handle_factory *factory, this->log = spa_support_find(support, n_support, SPA_TYPE_INTERFACE_Log); alsa_log_topic_init(this->log); - spa_log_info(this->log, "this is an alsa message"); + this->data_system = spa_support_find(support, n_support, SPA_TYPE_INTERFACE_DataSystem); this->data_loop = spa_support_find(support, n_support, SPA_TYPE_INTERFACE_DataLoop); this->main_loop = spa_support_find(support, n_support, SPA_TYPE_INTERFACE_Loop);