test/params_test.c: make more global variables static
[openssl.git] / test / params_test.c
index c7fa1b16e76531defd703636a70268dd80fde7cf..7fc21da5782fceabe7d8fbd3b45a6ee40527c3fc 100644 (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
 };