libyang BUGFIX strictly cast lnegths to int for "%.*s" format strings
diff --git a/src/hash_table.c b/src/hash_table.c
index e1a537e..609f408 100644
--- a/src/hash_table.c
+++ b/src/hash_table.c
@@ -218,7 +218,7 @@
     struct dict_rec *match = NULL, rec;
     uint32_t hash;
 
-    LOGDBG(LY_LDGDICT, "inserting \"%.*s\"", len, value);
+    LOGDBG(LY_LDGDICT, "inserting \"%.*s\"", (int)len, value);
 
     hash = dict_hash(value, len);
     /* set len as data for compare callback */