Commit 932c3d0f authored by Richard Levitte's avatar Richard Levitte
Browse files

test/params_test.c: make more global variables static



Again, compilers that don't like them being undeclared...

Reviewed-by: default avatarNicola Tuveri <nic.tuv@gmail.com>
(Merged from https://github.com/openssl/openssl/pull/8469)
parent 84727507
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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
};