From eef5740ff91a4d5989bc59bfc3019dff3df2244c Mon Sep 17 00:00:00 2001 From: Philip Hazel Date: Thu, 3 Mar 2022 16:44:06 +0000 Subject: [PATCH] Remove overlooked excess initializer --- src/pcre2_ucd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pcre2_ucd.c b/src/pcre2_ucd.c index a7d3dfc..5e0fc37 100644 --- a/src/pcre2_ucd.c +++ b/src/pcre2_ucd.c @@ -68,7 +68,7 @@ the tables when not needed. But don't leave a totally empty module because some compilers barf at that. Instead, just supply some small dummy tables. */ #ifndef SUPPORT_UNICODE -const ucd_record PRIV(ucd_records)[] = {{0,0,0,0,0,0,0,0 }}; +const ucd_record PRIV(ucd_records)[] = {{0,0,0,0,0,0,0 }}; const uint16_t PRIV(ucd_stage1)[] = {0}; const uint16_t PRIV(ucd_stage2)[] = {0}; const uint32_t PRIV(ucd_caseless_sets)[] = {0};