From 3e203a80404e9e26467113568c0b5ca62c1ab49d Mon Sep 17 00:00:00 2001 From: Sagar Ghuge Date: Wed, 15 Apr 2026 19:53:36 -0700 Subject: [PATCH] util: Increase array size to 20 For the future patches in Anv, we will be expanding the driconf enum to have 19 entries, so extend array from 5 to 20 to account that. Signed-off-by: Sagar Ghuge Reviewed-by: Lionel Landwerlin Part-of: --- src/util/xmlconfig.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/xmlconfig.h b/src/util/xmlconfig.h index 9feabd6c84c..6cc16eaca9c 100644 --- a/src/util/xmlconfig.h +++ b/src/util/xmlconfig.h @@ -107,7 +107,7 @@ typedef struct driOptionDescription { driOptionInfo info; driOptionValue value; - driEnumDescription enums[5]; + driEnumDescription enums[20]; } driOptionDescription; /** Returns an XML string describing the options for the driver. */