From 52bfcfa17d2eb4322da2037ad625f5575129cece Mon Sep 17 00:00:00 2001 From: iphydf Date: Fri, 8 Nov 2024 10:24:29 +0000 Subject: [PATCH] cleanup: Align enum suffix with upstream. We had renamed it because cimple doesn't support `_e`, but now it does. --- cmp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmp.c b/cmp.c index c11d23a..3db8e2b 100644 --- a/cmp.c +++ b/cmp.c @@ -57,7 +57,7 @@ enum { FIXSTR_SIZE = 0x1F }; -typedef enum cmp_error_t { +typedef enum cmp_error_e { CMP_ERROR_NONE, CMP_ERROR_STR_DATA_LENGTH_TOO_LONG, CMP_ERROR_BIN_DATA_LENGTH_TOO_LONG,