diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2024-05-17 08:54:00 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2024-06-19 16:28:28 +0200 |
commit | bfd5a0687fcc65e5617d5bab69ff653393f23e70 (patch) | |
tree | 10f216d7a6ebdd984df003259c5b84fe139a91bd /src/shared/firewall-util-private.h | |
parent | Fix confusion between killer and prey (diff) | |
download | systemd-bfd5a0687fcc65e5617d5bab69ff653393f23e70.tar.xz systemd-bfd5a0687fcc65e5617d5bab69ff653393f23e70.zip |
various: move const ptr indicator to return value
Diffstat (limited to 'src/shared/firewall-util-private.h')
-rw-r--r-- | src/shared/firewall-util-private.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/firewall-util-private.h b/src/shared/firewall-util-private.h index 38c8dfced5..2e9a231711 100644 --- a/src/shared/firewall-util-private.h +++ b/src/shared/firewall-util-private.h @@ -24,7 +24,7 @@ struct FirewallContext { sd_netlink *nfnl; }; -const char *firewall_backend_to_string(FirewallBackend b) _const_; +const char* firewall_backend_to_string(FirewallBackend b) _const_; int fw_nftables_init(FirewallContext *ctx); int fw_nftables_init_full(FirewallContext *ctx, bool init_tables); |