284d01d064377087417f9184e1b0314e91aaaa20
[AGL/meta-agl-devel.git] /
1 From 6f3335cfc06053e3ea5598058e0a2581e7ffa4af Mon Sep 17 00:00:00 2001
2 From: George Kiagiadakis <george.kiagiadakis@collabora.com>
3 Date: Sun, 22 Sep 2019 17:37:49 +0300
4 Subject: [PATCH] bluez-monitor: fix usage of pw_properties_setf without a
5  format string
6
7 Upstream-Status: Submitted [https://github.com/PipeWire/pipewire/pull/189]
8 ---
9  src/examples/bluez-monitor.c | 2 +-
10  1 file changed, 1 insertion(+), 1 deletion(-)
11
12 diff --git a/src/examples/bluez-monitor.c b/src/examples/bluez-monitor.c
13 index 1ae5ffe0..4bdfeb0d 100644
14 --- a/src/examples/bluez-monitor.c
15 +++ b/src/examples/bluez-monitor.c
16 @@ -123,7 +123,7 @@ static struct bluez5_node *bluez5_create_node(struct bluez5_object *obj, uint32_
17  
18         pw_properties_setf(node->props, PW_KEY_NODE_NAME, "%s.%s", info->factory_name, str);
19         pw_properties_set(node->props, PW_KEY_NODE_DESCRIPTION, str);
20 -       pw_properties_setf(node->props, "factory.name", info->factory_name);
21 +       pw_properties_set(node->props, "factory.name", info->factory_name);
22  
23         node->monitor = monitor;
24         node->object = obj;
25 -- 
26 2.23.0
27