summaryrefslogtreecommitdiffstats
path: root/src/set_elem.c
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@netfilter.org>2016-05-09 23:03:25 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2016-05-09 23:10:08 +0200
commitcd198535c645b34ca2e5cf0f33df28f1a6341982 (patch)
treee8c0becfb9b8f2dd28c1cbe12ffa9a06bbc75b20 /src/set_elem.c
parent600890067c40e1846398db373b9c38b6fe9a16a6 (diff)
src: remove unnecessary inline in _snprintf functions
These functions are passed as parameter, so we basically get nothing with this. Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'src/set_elem.c')
-rw-r--r--src/set_elem.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/set_elem.c b/src/set_elem.c
index d8c4758..353f21e 100644
--- a/src/set_elem.c
+++ b/src/set_elem.c
@@ -777,9 +777,9 @@ int nftnl_set_elem_snprintf(char *buf, size_t size,
}
EXPORT_SYMBOL_ALIAS(nftnl_set_elem_snprintf, nft_set_elem_snprintf);
-static inline int nftnl_set_elem_do_snprintf(char *buf, size_t size,
- const void *e, uint32_t cmd,
- uint32_t type, uint32_t flags)
+static int nftnl_set_elem_do_snprintf(char *buf, size_t size, const void *e,
+ uint32_t cmd, uint32_t type,
+ uint32_t flags)
{
return nftnl_set_elem_snprintf(buf, size, e, type, flags);
}