Remove unused parameter in function in config.c
All checks were successful
Run Unit Tests / build-and-run-unit-tests (push) Successful in 22s
All checks were successful
Run Unit Tests / build-and-run-unit-tests (push) Successful in 22s
This commit is contained in:
parent
0bbe280e1f
commit
37e0c3a98b
1 changed files with 0 additions and 3 deletions
|
@ -126,7 +126,6 @@ void internal_double_quote_decrement(uint_fast8_t *double_quote_count,
|
||||||
/// Returns non-zero if config should be returned.
|
/// Returns non-zero if config should be returned.
|
||||||
int internal_check_add_value(uint32_t *state,
|
int internal_check_add_value(uint32_t *state,
|
||||||
char **key_buf,
|
char **key_buf,
|
||||||
uint32_t *key_capacity,
|
|
||||||
uint32_t *key_idx,
|
uint32_t *key_idx,
|
||||||
char **value_buf,
|
char **value_buf,
|
||||||
uint32_t *value_capacity,
|
uint32_t *value_capacity,
|
||||||
|
@ -496,7 +495,6 @@ C_SIMPLE_HTTP_ParsedConfig c_simple_http_parse_config(
|
||||||
} else {
|
} else {
|
||||||
if (internal_check_add_value(&state,
|
if (internal_check_add_value(&state,
|
||||||
&key_buf,
|
&key_buf,
|
||||||
&key_capacity,
|
|
||||||
&key_idx,
|
&key_idx,
|
||||||
&value_buf,
|
&value_buf,
|
||||||
&value_capacity,
|
&value_capacity,
|
||||||
|
@ -520,7 +518,6 @@ C_SIMPLE_HTTP_ParsedConfig c_simple_http_parse_config(
|
||||||
|
|
||||||
if (internal_check_add_value(&state,
|
if (internal_check_add_value(&state,
|
||||||
&key_buf,
|
&key_buf,
|
||||||
&key_capacity,
|
|
||||||
&key_idx,
|
&key_idx,
|
||||||
&value_buf,
|
&value_buf,
|
||||||
&value_capacity,
|
&value_capacity,
|
||||||
|
|
Loading…
Reference in a new issue