spa: bluez: mark dbus vtables static

This commit is contained in:
Barnabás Pőcze 2025-11-03 22:33:59 +01:00 committed by Wim Taymans
parent 3337af64ca
commit 963d10f1ac
3 changed files with 7 additions and 6 deletions

View file

@ -247,11 +247,12 @@ static void update_properties(struct impl *impl, bool send_signal)
struct spa_bt_player *spa_bt_player_new(void *dbus_connection, struct spa_log *log)
{
struct impl *impl;
const DBusObjectPathVTable vtable = {
static const DBusObjectPathVTable vtable = {
.message_function = player_handler,
};
struct impl *impl;
spa_log_topic_init(log, &log_topic);
impl = calloc(1, sizeof(struct impl));