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>
This commit is contained in:
Baruch Siach 2015-04-19 06:35:01 +03:00 committed by Jonathan Corbet
parent de88d8becb
commit df1027abde
1 changed files with 1 additions and 1 deletions

View 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.