diff options
author | Andy Zhou <azhou@nicira.com> | 2014-09-03 16:16:54 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-09-05 18:19:53 -0400 |
commit | 29abe2fda54f8e16ecff5d76d96325f31508d5ba (patch) | |
tree | 4e1d514ec4ad01d9d03010356c8c46f28b8c8f42 /net/l2tp | |
parent | f35d2a5f8df97010ced72845f204545f215a2a2d (diff) |
l2tp: fix missing line continuation
This syntax error was covered by L2TP_REFCNT_DEBUG not being set by
default.
Signed-off-by: Andy Zhou <azhou@nicira.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/l2tp')
-rw-r--r-- | net/l2tp/l2tp_core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/l2tp/l2tp_core.c b/net/l2tp/l2tp_core.c index 797c0af71c06..2aa2b6c15f20 100644 --- a/net/l2tp/l2tp_core.c +++ b/net/l2tp/l2tp_core.c | |||
@@ -148,7 +148,7 @@ do { \ | |||
148 | atomic_read(&_t->ref_count)); \ | 148 | atomic_read(&_t->ref_count)); \ |
149 | l2tp_tunnel_inc_refcount_1(_t); \ | 149 | l2tp_tunnel_inc_refcount_1(_t); \ |
150 | } while (0) | 150 | } while (0) |
151 | #define l2tp_tunnel_dec_refcount(_t) | 151 | #define l2tp_tunnel_dec_refcount(_t) \ |
152 | do { \ | 152 | do { \ |
153 | pr_debug("l2tp_tunnel_dec_refcount: %s:%d %s: cnt=%d\n", \ | 153 | pr_debug("l2tp_tunnel_dec_refcount: %s:%d %s: cnt=%d\n", \ |
154 | __func__, __LINE__, (_t)->name, \ | 154 | __func__, __LINE__, (_t)->name, \ |