Clean up double enum

This was necessary to have https://github.com/wolfSSL/wolfAsyncCrypt/pull/70 be able to merge
This commit is contained in:
Andras Fekete
2023-09-19 10:28:34 -04:00
parent 1149522357
commit c12bf79e56

View File

@ -49,8 +49,7 @@ enum {
BAD_MUTEX_E = -106, /* Bad mutex operation */ BAD_MUTEX_E = -106, /* Bad mutex operation */
WC_TIMEOUT_E = -107, /* timeout error */ WC_TIMEOUT_E = -107, /* timeout error */
WC_PENDING_E = -108, /* wolfCrypt operation pending (would block) */ WC_PENDING_E = -108, /* wolfCrypt operation pending (would block) */
WC_NOT_PENDING_E = -109, /* wolfCrypt operation not pending */ WC_NO_PENDING_E = -109, /* no asynchronous operation pending */
WC_NO_PENDING_E = -109, /* no asynchronous operation not pending */
MP_INIT_E = -110, /* mp_init error state */ MP_INIT_E = -110, /* mp_init error state */
MP_READ_E = -111, /* mp_read error state */ MP_READ_E = -111, /* mp_read error state */