Fix "int vs enum" warnings from armcc v5
enumerated type mixed with another type
diff --git a/library/pkcs12.c b/library/pkcs12.c
index f445955..3b19051 100644
--- a/library/pkcs12.c
+++ b/library/pkcs12.c
@@ -198,7 +198,7 @@
if( ( ret = cipher_init_ctx( &cipher_ctx, cipher_info ) ) != 0 )
goto exit;
- if( ( ret = cipher_setkey( &cipher_ctx, key, 8 * keylen, mode ) ) != 0 )
+ if( ( ret = cipher_setkey( &cipher_ctx, key, 8 * keylen, (operation_t) mode ) ) != 0 )
goto exit;
if( ( ret = cipher_set_iv( &cipher_ctx, iv, cipher_info->iv_size ) ) != 0 )