Skip to content

Commit

Permalink
[NETFILTER]: nfnetlink_log: fix style
Browse files Browse the repository at this point in the history
Fix function definition style to match other functions in nfnetlink_log.c.

Signed-off-by: Michal Miroslaw <mirq-linux@rere.qmqm.pl>
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Michal Miroslaw authored and David S. Miller committed Oct 10, 2007
1 parent d63b043 commit c6a8f64
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions net/netfilter/nfnetlink_log.c
Original file line number Diff line number Diff line change
Expand Up @@ -301,8 +301,8 @@ nfulnl_set_flags(struct nfulnl_instance *inst, u_int16_t flags)
return 0;
}

static struct sk_buff *nfulnl_alloc_skb(unsigned int inst_size,
unsigned int pkt_size)
static struct sk_buff *
nfulnl_alloc_skb(unsigned int inst_size, unsigned int pkt_size)
{
struct sk_buff *skb;
unsigned int n;
Expand Down Expand Up @@ -365,7 +365,8 @@ __nfulnl_flush(struct nfulnl_instance *inst)
__nfulnl_send(inst);
}

static void nfulnl_timer(unsigned long data)
static void
nfulnl_timer(unsigned long data)
{
struct nfulnl_instance *inst = (struct nfulnl_instance *)data;

Expand Down

0 comments on commit c6a8f64

Please sign in to comment.