mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-04 13:30:12 -05:00
builder: fix variable shadow warning
This commit is contained in:
parent
4818795d31
commit
796db2b11b
1 changed files with 2 additions and 2 deletions
|
|
@ -562,8 +562,8 @@ static inline int
|
||||||
spa_pod_builder_addv(struct spa_pod_builder *builder, va_list args)
|
spa_pod_builder_addv(struct spa_pod_builder *builder, va_list args)
|
||||||
{
|
{
|
||||||
int res = 0;
|
int res = 0;
|
||||||
struct spa_pod_frame *f = builder->state.frame;
|
struct spa_pod_frame *frame = builder->state.frame;
|
||||||
uint32_t ftype = f ? f->pod.type : (uint32_t)SPA_TYPE_None;
|
uint32_t ftype = frame ? frame->pod.type : (uint32_t)SPA_TYPE_None;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
const char *format;
|
const char *format;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue