diff options
author | Lennart Poettering <lennart@poettering.net> | 2021-11-22 14:37:48 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2021-11-22 22:33:40 +0100 |
commit | fb9044cb6bf97a25ed411cb4362efe3852dbd1ec (patch) | |
tree | 5724c5c9b8f553af3b4a23619d1897d105222b0d /src/nspawn/nspawn.c | |
parent | resolved: add "proxy-only" stub on 127.0.0.54 (diff) | |
download | systemd-fb9044cb6bf97a25ed411cb4362efe3852dbd1ec.tar.xz systemd-fb9044cb6bf97a25ed411cb4362efe3852dbd1ec.zip |
nspawn: voidify expose_port_execute() calls
Diffstat (limited to '')
-rw-r--r-- | src/nspawn/nspawn.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nspawn/nspawn.c b/src/nspawn/nspawn.c index e5ae382d5f..4765882836 100644 --- a/src/nspawn/nspawn.c +++ b/src/nspawn/nspawn.c @@ -2544,8 +2544,8 @@ static int on_address_change(sd_netlink *rtnl, sd_netlink_message *m, void *user assert(m); assert(args); - expose_port_execute(rtnl, &args->fw_ctx, arg_expose_ports, AF_INET, &args->address4); - expose_port_execute(rtnl, &args->fw_ctx, arg_expose_ports, AF_INET6, &args->address6); + (void) expose_port_execute(rtnl, &args->fw_ctx, arg_expose_ports, AF_INET, &args->address4); + (void) expose_port_execute(rtnl, &args->fw_ctx, arg_expose_ports, AF_INET6, &args->address6); return 0; } |