1
0
Fork 0

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>
hifive-unleashed-5.1
Masahiro Yamada 2016-11-03 01:57:34 +09:00 committed by Jonathan Corbet
parent 05d5f95dc7
commit beab6cb20c
1 changed files with 1 additions and 1 deletions

View File

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