forward compatibility


git-svn-id: https://asn1c.svn.sourceforge.net/svnroot/asn1c/trunk@518 59561ff5-6e30-0410-9f3c-9617f08c8826
diff --git a/skeletons/tests/check-OCTET_STRING.c b/skeletons/tests/check-OCTET_STRING.c
index 58da387..059d249 100644
--- a/skeletons/tests/check-OCTET_STRING.c
+++ b/skeletons/tests/check-OCTET_STRING.c
@@ -34,7 +34,7 @@
 	rc = decoder(0, td, (void **)&st, tagname, xmlbuf, xmllen);
 	printf("[%s] => [%s]:%d vs [%s]:%d, code %d\n",
 		xmlbuf,
-		st ? st->buf : "", st ? st->size : 0,
+		st ? (const char *)st->buf : "", st ? st->size : 0,
 		verify ? verify : "", verlen, rc.code);
 
 	if(verify) {
@@ -68,6 +68,8 @@
 	check(HEX, "z", "<z><!-- <some <sometag>-->40</z>", "@");
 	check(HEX, "z", "<z><!-- <some <sometag-->>40</z>", 0);
 
+	check(HEX, "z", "ignored<z>40</z>stuff", "@");
+
 	check(HEX, "tag", "<tag>4</tag>", "@");
 
 	check(BINARY, "tag", "<tag/>", "");