From c12bf79e5692bdb228d189eb272d26092beec416 Mon Sep 17 00:00:00 2001 From: Andras Fekete Date: Tue, 19 Sep 2023 10:28:34 -0400 Subject: [PATCH] Clean up double enum This was necessary to have https://github.com/wolfSSL/wolfAsyncCrypt/pull/70 be able to merge --- wolfssl/wolfcrypt/error-crypt.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/wolfssl/wolfcrypt/error-crypt.h b/wolfssl/wolfcrypt/error-crypt.h index 3d7a74be2..39d63eb35 100644 --- a/wolfssl/wolfcrypt/error-crypt.h +++ b/wolfssl/wolfcrypt/error-crypt.h @@ -49,8 +49,7 @@ enum { BAD_MUTEX_E = -106, /* Bad mutex operation */ WC_TIMEOUT_E = -107, /* timeout error */ 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 not pending */ + WC_NO_PENDING_E = -109, /* no asynchronous operation pending */ MP_INIT_E = -110, /* mp_init error state */ MP_READ_E = -111, /* mp_read error state */