libyang BUGFIX strictly cast lnegths to int for "%.*s" format strings
diff --git a/src/schema_features.c b/src/schema_features.c
index 253da6b..8726b26 100644
--- a/src/schema_features.c
+++ b/src/schema_features.c
@@ -423,8 +423,8 @@
/* now get the link to the feature definition */
f = lysp_feature_find(qname->mod, &c[i], j - i, 1);
if (!f) {
- LOGVAL(ctx, LYVE_SYNTAX_YANG,
- "Invalid value \"%s\" of if-feature - unable to find feature \"%.*s\".", qname->str, j - i, &c[i]);
+ LOGVAL(ctx, LYVE_SYNTAX_YANG, "Invalid value \"%s\" of if-feature - unable to find feature \"%.*s\".",
+ qname->str, (int)(j - i), &c[i]);
rc = LY_EVALID;
goto error;
}