From b58c18a31b5fadf73cf761338de5b4b79c4c6805 Mon Sep 17 00:00:00 2001 From: Lukas Mai Date: Tue, 14 Mar 2023 10:20:28 +0100 Subject: regcomp.h: fix names of regnode_charclass union members --- regcomp.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'regcomp.h') diff --git a/regcomp.h b/regcomp.h index 95a76befca..ca670490ec 100644 --- a/regcomp.h +++ b/regcomp.h @@ -331,7 +331,7 @@ struct regnode_charclass { U32 arg1u; struct { U16 arg1a; - U16 arg2a; + U16 arg1b; }; }; char bitmap[ANYOF_BITMAP_SIZE]; /* only compile-time */ @@ -347,7 +347,7 @@ struct regnode_charclass_posixl { U32 arg1u; struct { U16 arg1a; - U16 arg2a; + U16 arg1b; }; }; char bitmap[ANYOF_BITMAP_SIZE]; /* both compile-time ... */ @@ -376,7 +376,7 @@ struct regnode_ssc { U32 arg1u; struct { U16 arg1a; - U16 arg2a; + U16 arg1b; }; }; char bitmap[ANYOF_BITMAP_SIZE]; /* both compile-time ... */ -- cgit v1.2.1