fix brace warning
Signed-off-by: SASANO Takayoshi <uaa@uaa.org.uk>
This commit is contained in:
parent
bba249e859
commit
0203e684a0
4 changed files with 244 additions and 244 deletions
8
sjrc.c
8
sjrc.c
|
|
@ -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))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue