diff options
Diffstat (limited to 'src/sp_config_utils.c')
| -rw-r--r-- | src/sp_config_utils.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sp_config_utils.c b/src/sp_config_utils.c index d72561b..71c9071 100644 --- a/src/sp_config_utils.c +++ b/src/sp_config_utils.c | |||
| @@ -25,7 +25,7 @@ int parse_keywords(sp_config_functions *funcs, char *line) { | |||
| 25 | } | 25 | } |
| 26 | 26 | ||
| 27 | if (*line) { | 27 | if (*line) { |
| 28 | sp_log_err("config", "Trailing chars '%s' at the end of '%s' on line %zu.", | 28 | sp_log_err("config", "Trailing chars '%s' at the end of '%s' on line %zu", |
| 29 | line, original_line, sp_line_no); | 29 | line, original_line, sp_line_no); |
| 30 | return -1; | 30 | return -1; |
| 31 | } | 31 | } |
| @@ -91,12 +91,12 @@ zend_string *get_param(size_t *consumed, char *restrict line, sp_type type, | |||
| 91 | } | 91 | } |
| 92 | err: | 92 | err: |
| 93 | if (0 == j) { | 93 | if (0 == j) { |
| 94 | sp_log_err("error", "A valid string as parameter is expected on line %zu.", | 94 | sp_log_err("error", "A valid string as parameter is expected on line %zu", |
| 95 | sp_line_no); | 95 | sp_line_no); |
| 96 | } else { | 96 | } else { |
| 97 | sp_log_err("error", | 97 | sp_log_err("error", |
| 98 | "There is an issue with the parsing of '%s': it doesn't look " | 98 | "There is an issue with the parsing of '%s': it doesn't look " |
| 99 | "like a valid string on line %zu.", | 99 | "like a valid string on line %zu", |
| 100 | original_line ? original_line : "NULL", sp_line_no); | 100 | original_line ? original_line : "NULL", sp_line_no); |
| 101 | } | 101 | } |
| 102 | line = NULL; | 102 | line = NULL; |
