From 42c56b40233ed7c8da29a7ae54631bc7e651b639 Mon Sep 17 00:00:00 2001 From: jvoisin Date: Tue, 5 Jan 2021 19:43:50 +0100 Subject: Fix a superfluous `const` --- src/sp_var_value.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/sp_var_value.c b/src/sp_var_value.c index 126ba0e..b9ac357 100644 --- a/src/sp_var_value.c +++ b/src/sp_var_value.c @@ -70,7 +70,7 @@ static zval *get_var_value(zend_execute_data *ed, const char *var_name, if (is_param) { zval *zvalue = get_param_var(ed, var_name); if (!zvalue) { - const char *complete_function_path = get_complete_function_path(ed); + char *complete_function_path = get_complete_function_path(ed); sp_log_warn("config", "It seems that you are filtering on a parameter " "'%s' of the function '%s', but the parameter does " -- cgit v1.3