style: use capital case for C language

Signed-off-by: Frediano Ziglio <fziglio@redhat.com>
Acked-by: Pavel Grunt <pgrunt@redhat.com>
This commit is contained in:
Frediano Ziglio 2016-05-11 10:40:40 +01:00
parent 0149b37946
commit 448f037a3c
2 changed files with 2 additions and 2 deletions

View File

@ -236,7 +236,7 @@ AC_MSG_NOTICE([
==============
prefix: ${prefix}
c compiler: ${CC}
C compiler: ${CC}
LZ4 support: ${enable_lz4}
Smartcard: ${have_smartcard}

View File

@ -80,7 +80,7 @@ Use const keyword when applicable to improve code reliability and celerity.
goto
----
Using goto is allowed in c code for error handling. In any other case it will be used only as a special exception.
Using goto is allowed in C code for error handling. In any other case it will be used only as a special exception.
Defining Constant values
------------------------