libyang BUGFIX strictly cast lnegths to int for "%.*s" format strings
diff --git a/src/schema_compile_amend.c b/src/schema_compile_amend.c
index 865c8b7..721c62c 100644
--- a/src/schema_compile_amend.c
+++ b/src/schema_compile_amend.c
@@ -1331,7 +1331,7 @@
if (!target_mod) {
LOGVAL(ctx, LYVE_REFERENCE,
"Invalid absolute-schema-nodeid nametest \"%.*s\" - prefix \"%.*s\" not defined in module \"%s\".",
- nametest_len, nametest, ptr - nametest, nametest, LYSP_MODULE_NAME(mod));
+ (int)nametest_len, nametest, (int)(ptr - nametest), nametest, LYSP_MODULE_NAME(mod));
return NULL;
}