mirror of
https://github.com/openssl/openssl.git
synced 2024-11-27 05:21:51 +08:00
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
@ -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 New Issue
Block a user