From: Tobin C. Harding Date: Fri, 17 Aug 2018 04:07:48 +0000 (+1000) Subject: CODING_STYLE: Fix non-uniform heading level X-Git-Tag: lxc-2.0.10~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f2872db03a598b05b4f213ba4461e52ac11def69;p=thirdparty%2Flxc.git CODING_STYLE: Fix non-uniform heading level Heading uses only 3 level header (###) but the rest of the file uses four (####). We should be uniform. Use uniform heading level in line with the rest of the file. Signed-off-by: Tobin C. Harding --- diff --git a/CODING_STYLE.md b/CODING_STYLE.md index b4c77d0c8..4fef234ed 100644 --- a/CODING_STYLE.md +++ b/CODING_STYLE.md @@ -382,7 +382,7 @@ rules to use them: } ``` -### Cast to `(void)` When Intentionally Ignoring Return Values +#### Cast to `(void)` When Intentionally Ignoring Return Values - There are cases where you do not care about the return value of a function. Please cast the return value to `(void)` when doing so.