On Mon, Jan 22, 2024 at 8:55 AM Christian Göttsche <cgzones@xxxxxxxxxxxxxx> wrote: > > Convert the only usage of the raw type struct level_datum to use the > typedef. Simplifies refactorizations on the type. > > Signed-off-by: Christian Göttsche <cgzones@xxxxxxxxxxxxxx> Acked-by: James Carter <jwcart2@xxxxxxxxx> > --- > libsepol/src/module_to_cil.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libsepol/src/module_to_cil.c b/libsepol/src/module_to_cil.c > index ee22dbbd..417c5307 100644 > --- a/libsepol/src/module_to_cil.c > +++ b/libsepol/src/module_to_cil.c > @@ -2390,7 +2390,7 @@ static int boolean_to_cil(int indent, struct policydb *UNUSED(pdb), struct avrul > > static int sens_to_cil(int indent, struct policydb *pdb, struct avrule_block *UNUSED(block), struct stack *UNUSED(decl_stack), char *key, void *datum, int scope) > { > - struct level_datum *level = datum; > + level_datum_t *level = datum; > > if (scope == SCOPE_DECL) { > if (!level->isalias) { > -- > 2.43.0 > >