git-svn-id: https://asn1c.svn.sourceforge.net/svnroot/asn1c/trunk@517 59561ff5-6e30-0410-9f3c-9617f08c8826
This commit is contained in:
vlm 2004-10-20 15:57:55 +00:00
parent a9f55e72a2
commit 9daadb17d1
1 changed files with 2 additions and 2 deletions

View File

@ -34,8 +34,8 @@ check(int type, char *tagname, char *xmlbuf, char *verify) {
rc = decoder(0, td, (void **)&st, tagname, xmlbuf, xmllen);
printf("[%s] => [%s]:%d vs [%s]:%d, code %d\n",
xmlbuf,
st ? st->buf : 0, st ? st->size : 0,
verify, verlen, rc.code);
st ? st->buf : "", st ? st->size : 0,
verify ? verify : "", verlen, rc.code);
if(verify) {
assert(rc.code == RC_OK);