lib: format macro slashes

Signed-off-by: Donald Lee <dlqs@gmx.com>
This commit is contained in:
Donald Lee 2021-07-08 00:28:19 +08:00
parent 5090d7249f
commit 8a79921ca3

View File

@ -205,7 +205,8 @@ int _frrscript_call_lua(struct lua_function_state *lfs, int nargs);
}) \
: ({ \
MAP_LISTS(ENCODE_ARGS, ##__VA_ARGS__); \
_frrscript_call_lua(lfs, PP_NARG(__VA_ARGS__)); \
_frrscript_call_lua( \
lfs, PP_NARG(__VA_ARGS__)); \
}) != 0 \
? ({ \
zlog_err( \
@ -214,7 +215,8 @@ int _frrscript_call_lua(struct lua_function_state *lfs, int nargs);
1; \
}) \
: ({ \
MAP_LISTS(DECODE_ARGS, ##__VA_ARGS__); \
MAP_LISTS(DECODE_ARGS, \
##__VA_ARGS__); \
0; \
}); \
})