mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-01 22:58:50 -04: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)
|
||||
{
|
||||
int res = 0;
|
||||
struct spa_pod_frame *f = builder->state.frame;
|
||||
uint32_t ftype = f ? f->pod.type : (uint32_t)SPA_TYPE_None;
|
||||
struct spa_pod_frame *frame = builder->state.frame;
|
||||
uint32_t ftype = frame ? frame->pod.type : (uint32_t)SPA_TYPE_None;
|
||||
|
||||
do {
|
||||
const char *format;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue