From abe9615fecc43ab0bd283af15f2de9a390bdfaac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Barnab=C3=A1s=20P=C5=91cze?= Date: Wed, 3 May 2023 00:26:37 +0200 Subject: [PATCH] spa: bluez: backend-hsphfpd: use `dbus_bool_t` for `DBUS_TYPE_BOOLEAN` --- spa/plugins/bluez5/backend-hsphfpd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spa/plugins/bluez5/backend-hsphfpd.c b/spa/plugins/bluez5/backend-hsphfpd.c index 33112263f..096d7e400 100644 --- a/spa/plugins/bluez5/backend-hsphfpd.c +++ b/spa/plugins/bluez5/backend-hsphfpd.c @@ -1036,7 +1036,7 @@ static DBusHandlerResult hsphfpd_parse_endpoint_properties(struct impl *backend, case DBUS_TYPE_BOOLEAN: { - bool value; + dbus_bool_t value; dbus_message_iter_get_basic(&value_i, &value); if (spa_streq(key, "Connected")) endpoint->connected = value;