diff options
author | Michal Miroslaw <mirq-linux@rere.qmqm.pl> | 2007-09-28 17:45:06 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-10 19:53:39 -0400 |
commit | c6a8f648362a5d8b934f4267b0ab9f255c130ab0 (patch) | |
tree | 171d7c8a807f33cca4d13316e6361164ccfacec8 /net | |
parent | d63b043d955c261f4f413eecf6e0488d7459acd4 (diff) |
[NETFILTER]: nfnetlink_log: fix style
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>
Diffstat (limited to 'net')
-rw-r--r-- | net/netfilter/nfnetlink_log.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/net/netfilter/nfnetlink_log.c b/net/netfilter/nfnetlink_log.c index 0fa17421bbc6..d2e811f46067 100644 --- a/net/netfilter/nfnetlink_log.c +++ b/net/netfilter/nfnetlink_log.c | |||
@@ -301,8 +301,8 @@ nfulnl_set_flags(struct nfulnl_instance *inst, u_int16_t flags) | |||
301 | return 0; | 301 | return 0; |
302 | } | 302 | } |
303 | 303 | ||
304 | static struct sk_buff *nfulnl_alloc_skb(unsigned int inst_size, | 304 | static struct sk_buff * |
305 | unsigned int pkt_size) | 305 | nfulnl_alloc_skb(unsigned int inst_size, unsigned int pkt_size) |
306 | { | 306 | { |
307 | struct sk_buff *skb; | 307 | struct sk_buff *skb; |
308 | unsigned int n; | 308 | unsigned int n; |
@@ -365,7 +365,8 @@ __nfulnl_flush(struct nfulnl_instance *inst) | |||
365 | __nfulnl_send(inst); | 365 | __nfulnl_send(inst); |
366 | } | 366 | } |
367 | 367 | ||
368 | static void nfulnl_timer(unsigned long data) | 368 | static void |
369 | nfulnl_timer(unsigned long data) | ||
369 | { | 370 | { |
370 | struct nfulnl_instance *inst = (struct nfulnl_instance *)data; | 371 | struct nfulnl_instance *inst = (struct nfulnl_instance *)data; |
371 | 372 | ||