[winpr] add WINPR_C_ARRAY_INIT

since C23 allows c++ style initializing replace direct use with this
macro
This commit is contained in:
Armin Novak
2026-02-24 20:18:25 +01:00
parent a5609b929e
commit 48267edf2f
434 changed files with 2204 additions and 2195 deletions

View File

@@ -484,7 +484,7 @@ static int rdtk_font_parse_descriptor_buffer(rdtkFont* font, char* buffer,
p += sizeof("offset=\"") - 1;
char* tok[4] = { 0 };
char* tok[4] = WINPR_C_ARRAY_INIT;
{
char* q = strchr(p, '"');