yanglint REFACTOR renaming feature_schema
diff --git a/tools/lint/main_ni.c b/tools/lint/main_ni.c
index 71a0639..fee2b81 100644
--- a/tools/lint/main_ni.c
+++ b/tools/lint/main_ni.c
@@ -245,11 +245,11 @@
}
}
-static struct schema_features *
+static struct yl_schema_features *
get_features_not_applied(const struct ly_set *fset)
{
for (uint32_t u = 0; u < fset->count; ++u) {
- struct schema_features *sf = fset->objs[u];
+ struct yl_schema_features *sf = fset->objs[u];
if (!sf->applied) {
return sf;
@@ -304,7 +304,7 @@
static int
apply_features(struct ly_set *schema_features, struct ly_ctx *ctx)
{
- struct schema_features *sf;
+ struct yl_schema_features *sf;
struct lys_module *mod;
/* check that all specified features were applied, apply now if possible */