libmalcontent: Add missing field initialisers to BUILDER_INIT

This fixes use of libmalcontent in projects which build with
`-Wmissing-field-initializers`.

Signed-off-by: Philip Withnall <withnall@endlessm.com>
This commit is contained in:
Philip Withnall 2019-05-15 14:31:02 +01:00
parent 916022af9c
commit 30cbeda0ae
1 changed files with 3 additions and 0 deletions

View File

@ -159,6 +159,9 @@ GType mct_app_filter_builder_get_type (void);
g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL), \
TRUE, \
FALSE, \
/* padding: */ \
NULL, \
NULL \
}
void mct_app_filter_builder_init (MctAppFilterBuilder *builder);