test/params_test.c: make more global variables static
Again, compilers that don't like them being undeclared... Reviewed-by: Nicola Tuveri <nic.tuv@gmail.com> (Merged from https://github.com/openssl/openssl/pull/8469)
This commit is contained in:
parent
847275075f
commit
932c3d0f67
1 changed files with 2 additions and 2 deletions
|
@ -414,11 +414,11 @@ struct param_owner_st {
|
|||
OSSL_PARAM *(*constructed_params)(void);
|
||||
};
|
||||
|
||||
struct param_owner_st raw_params = {
|
||||
static const struct param_owner_st raw_params = {
|
||||
static_raw_params, NULL
|
||||
};
|
||||
|
||||
struct param_owner_st api_params = {
|
||||
static const struct param_owner_st api_params = {
|
||||
static_api_params, construct_api_params
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue