libyang REFACTOR use size-specific int types instead of generic types (#1177)
Align parameters' types with the values in (internal) structures.
diff --git a/tests/utests/schema/test_parser_yin.c b/tests/utests/schema/test_parser_yin.c
index 201de0d..1d0f011 100644
--- a/tests/utests/schema/test_parser_yin.c
+++ b/tests/utests/schema/test_parser_yin.c
@@ -754,7 +754,7 @@
st->yin_ctx->xmlctx->value = "#invalid";
st->yin_ctx->xmlctx->value_len = 8;
assert_int_equal(yin_validate_value(st->yin_ctx, Y_IDENTIF_ARG), LY_EVALID);
- logbuf_assert("Invalid identifier character '#'. Line number 1.");
+ logbuf_assert("Invalid identifier character '#' (0x0023). Line number 1.");
st->yin_ctx->xmlctx->value = "";
st->yin_ctx->xmlctx->value_len = 0;