mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-01 22:58:50 -04:00
fix versions of the log interface
This commit is contained in:
parent
b45d906dc4
commit
a9c64e1609
4 changed files with 5 additions and 5 deletions
|
|
@ -123,7 +123,7 @@ struct { \
|
|||
{ { { SPA_TYPE_INTERFACE_Log, SPA_VERSION_LOG, \
|
||||
SPA_CALLBACKS_INIT(&name.methods, &name) }, \
|
||||
SPA_LOG_LEVEL_INFO, }, \
|
||||
{ SPA_VERSION_LOG_METHODS_LOGT, \
|
||||
{ SPA_VERSION_LOG_METHODS, \
|
||||
spa_log_impl_log, \
|
||||
spa_log_impl_logv, \
|
||||
spa_log_impl_logt, \
|
||||
|
|
|
|||
|
|
@ -168,7 +168,7 @@ impl_log_topic_init(void *object, struct spa_log_topic *t)
|
|||
}
|
||||
|
||||
static const struct spa_log_methods impl_log = {
|
||||
SPA_VERSION_LOG_METHODS_LOGT,
|
||||
SPA_VERSION_LOG_METHODS,
|
||||
.log = impl_log_log,
|
||||
.logv = impl_log_logv,
|
||||
.logt = impl_log_logt,
|
||||
|
|
|
|||
|
|
@ -250,7 +250,7 @@ impl_log_topic_init(void *object, struct spa_log_topic *t)
|
|||
}
|
||||
|
||||
static const struct spa_log_methods impl_log = {
|
||||
SPA_VERSION_LOG_METHODS_LOGT,
|
||||
SPA_VERSION_LOG_METHODS,
|
||||
.log = impl_log_log,
|
||||
.logv = impl_log_logv,
|
||||
.logt = impl_log_logt,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue