Add const qualifier on Sysvar.value.
All checks were successful
Remind unit tests / tests (push) Successful in 44s

This commit is contained in:
Dianne Skoll
2024-12-12 20:27:54 -05:00
parent 3fa798523a
commit af8b4e6df1

View File

@@ -286,7 +286,7 @@ typedef struct {
char const *name;
char modifiable;
int type;
void *value;
void const *value;
int min; /* Or const-value */
int max;
} SysVar;