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:
Richard Levitte 2019-03-13 14:01:27 +01:00
parent 847275075f
commit 932c3d0f67

View file

@ -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
};