From: Masahiro Yamada Date: Wed, 2 Nov 2016 16:57:34 +0000 (+0900) Subject: coding-style: fix mismatch of jump label name X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=beab6cb20c1dff4a0fb1ee9d14ff5f826ccd2c84;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git coding-style: fix mismatch of jump label name Commit 865a1caa4b6b ("CodingStyle: Clarify and complete chapter 7") renamed the label "out_buffer" to "out_free_buffer", but missed to change this line. Signed-off-by: Masahiro Yamada Reviewed-by: Jean Delvare Signed-off-by: Jonathan Corbet --- diff --git a/Documentation/process/coding-style.rst b/Documentation/process/coding-style.rst index 968808bec407..3e7905172000 100644 --- a/Documentation/process/coding-style.rst +++ b/Documentation/process/coding-style.rst @@ -475,7 +475,7 @@ The rationale for using gotos is: ... } result = 1; - goto out_buffer; + goto out_free_buffer; } ... out_free_buffer: