mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-04-01 20:05:19 +00:00
iptables.c: remove dead store to "s"
* src/iptables.c (iptablesAddRemoveRule): Remove dead store.
This commit is contained in:
parent
94f0c4abd9
commit
1fcaae34e1
@ -398,7 +398,7 @@ iptablesAddRemoveRule(iptRules *rules, int action, const char *arg, ...)
|
||||
1; /* arg */
|
||||
|
||||
va_start(args, arg);
|
||||
while ((s = va_arg(args, const char *)))
|
||||
while (va_arg(args, const char *))
|
||||
n++;
|
||||
|
||||
va_end(args);
|
||||
|
Loading…
x
Reference in New Issue
Block a user