tests MAINTENANCE get rid of the compiler warning when filling dummy structure
diff --git a/tests/utests/schema/test_parser_yin.c b/tests/utests/schema/test_parser_yin.c
index 1d0f011..93d0d7c 100644
--- a/tests/utests/schema/test_parser_yin.c
+++ b/tests/utests/schema/test_parser_yin.c
@@ -3508,7 +3508,7 @@
                 "</action>"
            ELEMENT_WRAPPER_END;
     /* there must be parent for action */
-    act_meta.parent = NULL + 1;
+    act_meta.parent = (void*)1;
     assert_int_equal(test_element_helper(st, data, &act_meta, NULL, NULL), LY_SUCCESS);
     act_meta.parent = NULL;
     assert_non_null(actions->parent);