summaryrefslogtreecommitdiff
path: root/src/sp_config.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/sp_config.c')
-rw-r--r--src/sp_config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sp_config.c b/src/sp_config.c
index 5db511e..60c379a 100644
--- a/src/sp_config.c
+++ b/src/sp_config.c
@@ -110,7 +110,7 @@ SP_PARSEKW_FN(parse_empty) {
110 return SP_PARSER_ERROR; 110 return SP_PARSER_ERROR;
111 } 111 }
112 if (kw->argtype != SP_ARGTYPE_EMPTY) { 112 if (kw->argtype != SP_ARGTYPE_EMPTY) {
113 sp_log_err("config", "Missing paranthesis for keyword '%s' - it should be '%s()' on line %zu", token, token, kw->lineno); 113 sp_log_err("config", "Missing parenthesis for keyword '%s' - it should be '%s()' on line %zu", token, token, kw->lineno);
114 return SP_PARSER_ERROR; 114 return SP_PARSER_ERROR;
115 } 115 }
116 *(bool *)retval = true; 116 *(bool *)retval = true;