mirror of
https://github.com/yuzu-emu/mbedtls
synced 2024-11-24 19:28:14 +00:00
Added missing static to md_info_by_size() in ecdsa.c
This commit is contained in:
parent
bf98c3dd11
commit
18e9f3282b
1 changed files with 1 additions and 1 deletions
|
@ -140,7 +140,7 @@ static void hmac_drbg_free( hmac_drbg_context *ctx )
|
|||
*
|
||||
* 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 int *md_alg;
|
||||
|
|
Loading…
Reference in a new issue