Added missing static to md_info_by_size() in ecdsa.c
diff --git a/library/ecdsa.c b/library/ecdsa.c
index b4ac18d..9f697a1 100644
--- a/library/ecdsa.c
+++ b/library/ecdsa.c
@@ -140,7 +140,7 @@
  *
  * 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;