commit | a273371fc48bdd5a71ef6e8b2da4326b7c12e104 | [log] [tgz] |
---|---|---|
author | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Tue Feb 10 17:32:14 2015 +0100 |
committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Tue Feb 10 17:34:48 2015 +0100 |
tree | bb3bf5bdb4a1862c857b257f0409598428773be3 | |
parent | 7f84905552766d115a1a9a044c8c270df61fe6ee [diff] [blame] |
Fix "int vs enum" warnings from armcc v5 enumerated type mixed with another type
diff --git a/library/cipher_wrap.c b/library/cipher_wrap.c index 7b597d6..736c292 100644 --- a/library/cipher_wrap.c +++ b/library/cipher_wrap.c
@@ -1442,7 +1442,7 @@ { POLARSSL_CIPHER_NULL, &null_cipher_info }, #endif /* POLARSSL_CIPHER_NULL_CIPHER */ - { 0, NULL } + { POLARSSL_CIPHER_NONE, NULL } }; #define NUM_CIPHERS sizeof cipher_definitions / sizeof cipher_definitions[0]