We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eea4368 commit 7f9cb31Copy full SHA for 7f9cb31
src/lib-settings/test-settings.c
@@ -293,17 +293,17 @@ static void test_var_expand_hierarchy(void)
293
.context = context2,
294
};
295
296
- struct var_expand_params params3 = {
297
- .tables_arr = (const struct var_expand_table *const[]) {
298
- tab1,
299
300
- NULL
301
- },
302
- .contexts = (void *const[]) {
303
- context1,
304
305
- VAR_EXPAND_CONTEXTS_END,
306
- }
+ struct var_expand_params params3;
+ i_zero(¶ms3);
+ params3.tables_arr = (const struct var_expand_table *const[]) {
+ tab1,
+ NULL
+ };
+ params3.contexts = (void *const[]) {
+ context1,
+ VAR_EXPAND_CONTEXTS_END,
307
308
309
struct settings_root *set_root = settings_root_init();
0 commit comments