mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-03-24 22:25:11 +00:00
Added missing static to md_info_by_size() in ecdsa.c
This commit is contained in:
parent
bf98c3dd11
commit
18e9f3282b
|
@ -140,7 +140,7 @@ static void hmac_drbg_free( hmac_drbg_context *ctx )
|
||||||
*
|
*
|
||||||
* Argument is the minimum size in bytes of the MD output.
|
* Argument is the minimum size in bytes of the MD output.
|
||||||
*/
|
*/
|
||||||
const md_info_t *md_info_by_size( int min_size )
|
static const md_info_t *md_info_by_size( int min_size )
|
||||||
{
|
{
|
||||||
const md_info_t *md_cur, *md_picked = NULL;
|
const md_info_t *md_cur, *md_picked = NULL;
|
||||||
const int *md_alg;
|
const int *md_alg;
|
||||||
|
|
Loading…
Reference in a new issue