diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2016-11-02 17:57:34 +0100 |
---|---|---|
committer | Jonathan Corbet <corbet@lwn.net> | 2016-11-08 03:05:03 +0100 |
commit | beab6cb20c1dff4a0fb1ee9d14ff5f826ccd2c84 (patch) | |
tree | c4b19e45f4c60b28f45b96efe50131c55c76e4e7 | |
parent | doc-rst: make cleandocs misses a fair number of files (diff) | |
download | linux-beab6cb20c1dff4a0fb1ee9d14ff5f826ccd2c84.tar.xz linux-beab6cb20c1dff4a0fb1ee9d14ff5f826ccd2c84.zip |
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 <yamada.masahiro@socionext.com>
Reviewed-by: Jean Delvare <jdelvare@suse.de>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
-rw-r--r-- | Documentation/process/coding-style.rst | 2 |
1 files changed, 1 insertions, 1 deletions
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: |