From 18e9f3282bd4ca4bbbd6666c5e1c56f3589324f8 Mon Sep 17 00:00:00 2001
From: Paul Bakker
Date: Thu, 23 Jan 2014 16:08:06 +0100
Subject: [PATCH] Added missing static to md_info_by_size() in ecdsa.c
---
library/ecdsa.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/library/ecdsa.c b/library/ecdsa.c
index b4ac18d2b..9f697a1cd 100644
--- a/library/ecdsa.c
+++ b/library/ecdsa.c
@@ -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;