From 72a39bfa57a691195a9d8aa30abc8be2799fcab2 Mon Sep 17 00:00:00 2001 From: Daniel Pouzzner Date: Fri, 24 Apr 2026 15:16:23 -0500 Subject: [PATCH] wolfssl/wolfcrypt/random.h: fix "comma at end of enumerator list [-Werror=pedantic]" in enum wc_DrbgType. --- wolfssl/wolfcrypt/random.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wolfssl/wolfcrypt/random.h b/wolfssl/wolfcrypt/random.h index afc5994191..102f05d6b5 100644 --- a/wolfssl/wolfcrypt/random.h +++ b/wolfssl/wolfcrypt/random.h @@ -338,7 +338,7 @@ struct DRBG_SHA512_internal { #ifdef HAVE_HASHDRBG enum wc_DrbgType { WC_DRBG_SHA256 = 0, - WC_DRBG_SHA512 = 1, + WC_DRBG_SHA512 = 1 }; #endif