Browse Source

Documentation/CodingStyle: fix example macro parenthesis imbalance

Cc: Bartosz Golaszewski <bgolaszewski@baylibre.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Fixes: f2027543b9 ('documentation: update CodingStyle on local variables naming in macros')
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Baruch Siach 10 years ago
parent
commit
df1027abde
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Documentation/CodingStyle

+ 1 - 1
Documentation/CodingStyle

@@ -670,7 +670,7 @@ functions:
 	typeof(x) ret;			\
 	ret = calc_ret(x);		\
 	(ret);				\
-)}
+})
 
 ret is a common name for a local variable - __foo_ret is less likely
 to collide with an existing variable.