Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit df1027ab authored by Baruch Siach's avatar Baruch Siach Committed by Jonathan Corbet
Browse files

Documentation/CodingStyle: fix example macro parenthesis imbalance



Cc: Bartosz Golaszewski <bgolaszewski@baylibre.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Fixes: f2027543 ('documentation: update CodingStyle on local variables naming in macros')
Signed-off-by: default avatarBaruch Siach <baruch@tkos.co.il>
Signed-off-by: default avatarJonathan Corbet <corbet@lwn.net>
parent de88d8be
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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.