diff options
author | Jeremy Sowden <jeremy@azazel.net> | 2019-09-13 09:13:10 +0100 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2019-09-13 12:46:25 +0200 |
commit | 16b26cde6f12a759e59f267763c11bb1818d067e (patch) | |
tree | 62120409d70793fd27ec5b26420b14b744a20355 /include/linux/netfilter.h | |
parent | 46705b070c279b352bbbe8118d78aa31b0768245 (diff) |
netfilter: conntrack: use consistent style when defining inline functions
The header contains some inline functions defined as:
static inline f (...)
{
#ifdef CONFIG_NF_CONNTRACK_EVENTS
...
#else
...
#endif
}
and a few others as:
#ifdef CONFIG_NF_CONNTRACK_EVENTS
static inline f (...)
{
...
}
#else
static inline f (...)
{
...
}
#endif
Prefer the former style, which is more numerous.
Signed-off-by: Jeremy Sowden <jeremy@azazel.net>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'include/linux/netfilter.h')
0 files changed, 0 insertions, 0 deletions