Added missing static to md_info_by_size() in ecdsa.c

This commit is contained in:
Paul Bakker 2014-01-23 16:08:06 +01:00
parent bf98c3dd11
commit 18e9f3282b

View file

@ -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;