Skip to content

Commit

Permalink
test/params_test.c: make construct_api_params() static
Browse files Browse the repository at this point in the history
With enough warning flags, compilers complain when a non-static
function hasn't been properly declared...
  • Loading branch information
levitte committed Mar 13, 2019
1 parent 62ca156 commit 79c0b33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/params_test.c
Expand Up @@ -387,7 +387,7 @@ static const OSSL_PARAM static_api_params[] = {
* The same array again, but constructed at run-time
* This exercises the OSSL_PARAM constructor functions
*/
OSSL_PARAM *construct_api_params(void)
static OSSL_PARAM *construct_api_params(void)
{
size_t n = 0;
static OSSL_PARAM params[10];
Expand Down

0 comments on commit 79c0b33

Please sign in to comment.