From 924144799f380863aa3b13f444f478eb81dcef6c Mon Sep 17 00:00:00 2001 From: jvoisin Date: Fri, 6 May 2022 21:11:28 +0200 Subject: Another constify pass --- src/sp_config_scanner.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/sp_config_scanner.h') diff --git a/src/sp_config_scanner.h b/src/sp_config_scanner.h index 3284713..8ce1fb7 100644 --- a/src/sp_config_scanner.h +++ b/src/sp_config_scanner.h @@ -19,7 +19,7 @@ typedef struct { } sp_parsed_keyword; zend_result sp_config_scan(char *data, zend_result (*process_rule)(sp_parsed_keyword*)); -zend_string *sp_get_arg_string(sp_parsed_keyword *kw); -zend_string *sp_get_textual_representation(sp_parsed_keyword *parsed_rule); +zend_string *sp_get_arg_string(sp_parsed_keyword const *const kw); +zend_string *sp_get_textual_representation(sp_parsed_keyword const *const parsed_rule); -#endif \ No newline at end of file +#endif -- cgit v1.3