gentoo-ebuilds/app-crypt/efitools/files/1.9.2-gcc15.patch
James Le Cuirot 9e2bdfed3a
app-crypt/efitools: Fix GCC 15 patch
I included stdbool.h in the wrong place.

Closes: https://bugs.gentoo.org/959631
Signed-off-by: James Le Cuirot <chewi@gentoo.org>
2025-07-10 16:58:54 +01:00

14 lines
247 B
Diff

https://bugs.gentoo.org/955698
https://bugs.gentoo.org/959631
--- a/lib/asn1/typedefs.h
+++ b/lib/asn1/typedefs.h
@@ -52,7 +52,7 @@
#endif
-typedef unsigned char bool;
+#include <stdbool.h>
typedef unsigned int u_int;
#define DBG1(s...)