Changed two error codes in a single error type.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@12091 110e8d01-0319-4d1e-a829-52ad28d1bb01
This commit is contained in:
Giovanni Di Sirio 2018-06-13 07:41:20 +00:00
parent 94c5e066cc
commit 6b10290a42
1 changed files with 1 additions and 2 deletions

View File

@ -99,8 +99,7 @@ typedef enum {
CRY_ERR_INV_KEY_SIZE = 2, /**< Invalid key size. */
CRY_ERR_INV_KEY_TYPE = 3, /**< Invalid key type. */
CRY_ERR_INV_KEY_ID = 4, /**< Invalid key identifier. */
CRY_ERR_ENCRYP = 5, /**< Encryption error. */
CRY_ERR_DECRYP = 6 /**< Decryption error. */
CRY_ERR_OPERATION_FAILURE = 5 /**< Requested operation failed.*/
} cryerror_t;
/**