mirror of https://gitee.com/openkylin/libvirt.git
util: Fix syntax-check
Commit b9cc24839b
introduced a new #define but neglected
to format it properly, thus breaking syntax-check.
This commit is contained in:
parent
bd4f4d1686
commit
f0af48f0dd
|
@ -54,8 +54,8 @@ void virFirewallFree(virFirewallPtr firewall);
|
|||
*
|
||||
* Returns the new rule
|
||||
*/
|
||||
#define virFirewallAddRule(firewall, layer, ...) \
|
||||
virFirewallAddRuleFull(firewall, layer, false, NULL, NULL, __VA_ARGS__)
|
||||
# define virFirewallAddRule(firewall, layer, ...) \
|
||||
virFirewallAddRuleFull(firewall, layer, false, NULL, NULL, __VA_ARGS__)
|
||||
|
||||
typedef int (*virFirewallQueryCallback)(virFirewallPtr firewall,
|
||||
const char *const *lines,
|
||||
|
|
Loading…
Reference in New Issue