From: Mathieu Desnoyers Date: Thu, 19 May 2016 15:57:43 +0000 (-0400) Subject: Fix: coding style document has erroneous semicolon at end of macro X-Git-Tag: v2.6.3~13 X-Git-Url: https://git.liburcu.org/?p=lttng-tools.git;a=commitdiff_plain;h=1d4db3f2f3786b8c1908b70af031b88c155afd88 Fix: coding style document has erroneous semicolon at end of macro Signed-off-by: Mathieu Desnoyers Signed-off-by: Jérémie Galarneau --- diff --git a/CodingStyle b/CodingStyle index 8833180d6..1d8bd9b43 100644 --- a/CodingStyle +++ b/CodingStyle @@ -36,7 +36,7 @@ Use space to indent the '\' at the end but tabs at the beginning. #define a_macro(x) \ do { \ fsync(); \ - } while (0); \ + } while (0) It's really the only time we use spaces. For everything else, there is TABS! :)