mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-16 00:25:01 +00:00
lib: Add parens around macro args
Signed-off-by: Donald Lee <dlqs@gmx.com>
This commit is contained in:
parent
9e3a277b04
commit
b5e790ee4d
@ -126,7 +126,7 @@ void frrscript_init(const char *scriptdir);
|
|||||||
* This macro is mapped to every (name, value) in frrscript_call,
|
* This macro is mapped to every (name, value) in frrscript_call,
|
||||||
* so this in turn maps them onto their encoders
|
* so this in turn maps them onto their encoders
|
||||||
*/
|
*/
|
||||||
#define ENCODE_ARGS(name, value) ENCODE_ARGS_WITH_STATE(lfs->L, value)
|
#define ENCODE_ARGS(name, value) ENCODE_ARGS_WITH_STATE(lfs->L, (value))
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* This macro is also mapped to every (name, value) in frrscript_call, but
|
* This macro is also mapped to every (name, value) in frrscript_call, but
|
||||||
@ -140,11 +140,11 @@ void frrscript_init(const char *scriptdir);
|
|||||||
*/
|
*/
|
||||||
#define DECODE_ARGS(name, value) \
|
#define DECODE_ARGS(name, value) \
|
||||||
do { \
|
do { \
|
||||||
lua_getfield(lfs->L, 1, name); \
|
lua_getfield(lfs->L, 1, (name)); \
|
||||||
if (lua_isnil(lfs->L, 2)) { \
|
if (lua_isnil(lfs->L, 2)) { \
|
||||||
lua_pop(lfs->L, 1); \
|
lua_pop(lfs->L, 1); \
|
||||||
} else { \
|
} else { \
|
||||||
DECODE_ARGS_WITH_STATE(lfs->L, value); \
|
DECODE_ARGS_WITH_STATE(lfs->L, (value)); \
|
||||||
} \
|
} \
|
||||||
assert(lua_gettop(lfs->L) == 1); \
|
assert(lua_gettop(lfs->L) == 1); \
|
||||||
} while (0)
|
} while (0)
|
||||||
@ -172,7 +172,7 @@ char * : lua_pushstring_wrapper, \
|
|||||||
struct attr * : lua_pushattr, \
|
struct attr * : lua_pushattr, \
|
||||||
struct peer * : lua_pushpeer, \
|
struct peer * : lua_pushpeer, \
|
||||||
const struct prefix * : lua_pushprefix \
|
const struct prefix * : lua_pushprefix \
|
||||||
)(L, value)
|
)((L), (value))
|
||||||
|
|
||||||
#define DECODE_ARGS_WITH_STATE(L, value) \
|
#define DECODE_ARGS_WITH_STATE(L, value) \
|
||||||
_Generic((value), \
|
_Generic((value), \
|
||||||
@ -188,7 +188,7 @@ char * : lua_decode_stringp, \
|
|||||||
struct attr * : lua_decode_attr, \
|
struct attr * : lua_decode_attr, \
|
||||||
struct peer * : lua_decode_noop, \
|
struct peer * : lua_decode_noop, \
|
||||||
const struct prefix * : lua_decode_noop \
|
const struct prefix * : lua_decode_noop \
|
||||||
)(L, -1, value)
|
)((L), -1, (value))
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Call Lua function state (abstraction for a single Lua function)
|
* Call Lua function state (abstraction for a single Lua function)
|
||||||
|
Loading…
Reference in New Issue
Block a user