fuzz BUGFIX fix fuzz harness function signature compilation warnings
diff --git a/tests/fuzz/yang_parse_module.c b/tests/fuzz/yang_parse_module.c
index 595da62..c25a5d2 100644
--- a/tests/fuzz/yang_parse_module.c
+++ b/tests/fuzz/yang_parse_module.c
@@ -42,7 +42,7 @@
 	}
 	mod->ctx = ctx;
 
-	yang_parse_module(&context, data, mod);
+	yang_parse_module(&context, (const char *) data, mod);
 
 	free(data);
 	free(mod);