defs: don't use __

This commit is contained in:
Wim Taymans 2019-01-25 16:52:32 +01:00
parent 68bcc6b8e8
commit efc571972d

View file

@ -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; \
})