Fix some badly-behaved macros

Some macros evaluated their arguments more than once when it was not
needed, or were missing parentheses.
This commit is contained in:
Demi Marie Obenour 2022-09-01 17:02:44 -04:00
parent bb4f274ae0
commit 671a7102ff
46 changed files with 162 additions and 156 deletions

View file

@ -36,10 +36,10 @@ extern "C" {
*/
#ifndef spa_debug
#define spa_debug(fmt,...) ({ printf(fmt"\n", ## __VA_ARGS__); })
#define spa_debug(fmt,...) ({ printf((fmt"\n"), ## __VA_ARGS__); })
#endif
#ifndef spa_debugn
#define spa_debugn(fmt,...) ({ printf(fmt, ## __VA_ARGS__); })
#define spa_debugn(fmt,...) ({ printf((fmt), ## __VA_ARGS__); })
#endif
/**