Re: [PATCH v5] telemetry: remove non-portable array initialization syntax

2023-05-24 Thread Thomas Monjalon
05/04/2023 20:52, Tyler Retzlaff: > Use of ranges in designated initialization are a non-standard gcc > extension. > > Only initialize '_' and '/' elements of the array and filter tests > of characters through name with standard C isalnum before checking > the array. > > Suggested-by: Konstantin

[PATCH v5] telemetry: remove non-portable array initialization syntax

2023-04-05 Thread Tyler Retzlaff
Use of ranges in designated initialization are a non-standard gcc extension. Only initialize '_' and '/' elements of the array and filter tests of characters through name with standard C isalnum before checking the array. Suggested-by: Konstantin Ananyev Suggested-by: Bruce Richardson Signed-of