From 9e08ae35a0ee37d2dd015a9ebda1146baf768372 Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Thu, 14 Aug 2025 15:11:55 -0600 Subject: [PATCH] regcomp.h: Convert _reg_trie_trans to legal name --- regcomp.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/regcomp.h b/regcomp.h index 7a20b54fdf..5870d0d153 100644 --- a/regcomp.h +++ b/regcomp.h @@ -1189,7 +1189,7 @@ struct reg_data { field. the next field determines which state is to be transitioned to if any. */ -struct _reg_trie_trans { +struct reg_trie_trans_ { U32 next; U32 check; }; @@ -1226,7 +1226,7 @@ typedef struct { typedef struct _reg_trie_state reg_trie_state; -typedef struct _reg_trie_trans reg_trie_trans; +typedef struct reg_trie_trans_ reg_trie_trans; /* anything in here that needs to be freed later