lib UPDATE libyang v3 updates
diff --git a/src/log.c b/src/log.c
index 8463482..8838ec2 100644
--- a/src/log.c
+++ b/src/log.c
@@ -127,7 +127,8 @@
}
static void
-nc_ly_log_clb(LY_LOG_LEVEL lvl, const char *msg, const char *UNUSED(path))
+nc_ly_log_clb(LY_LOG_LEVEL lvl, const char *msg, const char *UNUSED(data_path), const char *UNUSED(schema_path),
+ uint64_t UNUSED(line))
{
if (print_clb) {
print_clb(NULL, (NC_VERB_LEVEL)lvl, msg);
@@ -141,5 +142,5 @@
{
print_clb = clb;
depr_print_clb = NULL;
- ly_set_log_clb(nc_ly_log_clb, 1);
+ ly_set_log_clb(nc_ly_log_clb);
}