coding-style: fix mismatch of jump label name

Commit 865a1caa4b ("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>
This commit is contained in:
Masahiro Yamada 2016-11-03 01:57:34 +09:00 коммит произвёл Jonathan Corbet
Родитель 05d5f95dc7
Коммит beab6cb20c
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -475,7 +475,7 @@ The rationale for using gotos is:
... ...
} }
result = 1; result = 1;
goto out_buffer; goto out_free_buffer;
} }
... ...
out_free_buffer: out_free_buffer: