OSDN Git Service

Documentation/CodingStyle: fix example macro parenthesis imbalance
authorBaruch Siach <baruch@tkos.co.il>
Sun, 19 Apr 2015 03:35:01 +0000 (06:35 +0300)
committerJonathan Corbet <corbet@lwn.net>
Thu, 7 May 2015 23:07:41 +0000 (17:07 -0600)
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>
Documentation/CodingStyle

index f4b78ea..b713c35 100644 (file)
@@ -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.