fix brace warning

Signed-off-by: SASANO Takayoshi <uaa@uaa.org.uk>
This commit is contained in:
SASANO Takayoshi 2023-12-07 20:40:09 +09:00 • committed by Masanori Ogino
commit 0203e684a0
4 changed files with 244 additions and 244 deletions

8
sjrc.c
View file

@ -66,10 +66,10 @@ struct functbl {
char *keyword;
int (*func)();
} funcs[] = {
"dictionary", set_dict,
"userdic", set_dict,
"server", set_server,
NULL, NULL
{"dictionary", set_dict},
{"userdic", set_dict},
{"server", set_server},
{NULL, NULL}
};
#define TOLOWER(c) (isupper(c) ? tolower(c) : (c))