Fix "int vs enum" warnings from armcc v5
enumerated type mixed with another type
diff --git a/library/ecdsa.c b/library/ecdsa.c
index 60dd427..0585748 100644
--- a/library/ecdsa.c
+++ b/library/ecdsa.c
@@ -59,7 +59,7 @@
for( md_alg = md_list(); *md_alg != 0; md_alg++ )
{
- if( ( md_cur = md_info_from_type( *md_alg ) ) == NULL ||
+ if( ( md_cur = md_info_from_type( (md_type_t) *md_alg ) ) == NULL ||
(size_t) md_cur->size < min_size ||
( md_picked != NULL && md_cur->size > md_picked->size ) )
continue;