CLEANUP: check: fix get_check_status_info declaration

we always put a \n between function name and `{`

Signed-off-by: William Dauchy <wdauchy@gmail.com>
This commit is contained in:
William Dauchy 2021-02-14 22:26:23 +01:00 committed by Christopher Faulet
parent eaab7325a7
commit b26122b032

View File

@ -178,8 +178,8 @@ const char *get_check_status_description(short check_status) {
}
/* Converts check_status code to short info */
const char *get_check_status_info(short check_status) {
const char *get_check_status_info(short check_status)
{
const char *info;
if (check_status < HCHK_STATUS_SIZE)