pw_factory_proxy -> pw_factory

This commit is contained in:
Wim Taymans 2019-12-11 15:06:00 +01:00
parent f1eb5f6046
commit 114982f3f5
9 changed files with 57 additions and 57 deletions

View file

@ -811,8 +811,8 @@ static void factory_event_info(void *object, const struct pw_factory_info *info)
}
}
static const struct pw_factory_proxy_events factory_events = {
PW_VERSION_FACTORY_PROXY_EVENTS,
static const struct pw_factory_events factory_events = {
PW_VERSION_FACTORY_EVENTS,
.info = factory_event_info
};
@ -1122,7 +1122,7 @@ static bool bind_global(struct remote_data *rd, struct global *global, char **er
break;
case PW_TYPE_INTERFACE_Factory:
events = &factory_events;
client_version = PW_VERSION_FACTORY_PROXY;
client_version = PW_VERSION_FACTORY;
destroy = (pw_destroy_t) pw_factory_info_free;
info_func = info_factory;
break;