mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-02 09:01:50 -05:00
defs: don't use __
This commit is contained in:
parent
68bcc6b8e8
commit
efc571972d
1 changed files with 3 additions and 3 deletions
|
|
@ -107,9 +107,9 @@ struct spa_fraction {
|
|||
})
|
||||
|
||||
#define SPA_TYPECHECK(type,x) \
|
||||
({ type __dummy; \
|
||||
typeof(x) __dummy2; \
|
||||
(void)(&__dummy == &__dummy2); \
|
||||
({ type _dummy; \
|
||||
typeof(x) _dummy2; \
|
||||
(void)(&_dummy == &_dummy2); \
|
||||
x; \
|
||||
})
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue