Index: ossp-pkg/xds/regression-tests/xml-int64.c RCS File: /v/ossp/cvs/ossp-pkg/xds/regression-tests/Attic/xml-int64.c,v rcsdiff -q -kk '-r1.1' '-r1.2' -u '/v/ossp/cvs/ossp-pkg/xds/regression-tests/Attic/xml-int64.c,v' 2>/dev/null --- xml-int64.c 2001/07/23 16:17:44 1.1 +++ xml-int64.c 2001/07/23 16:45:10 1.2 @@ -104,7 +104,7 @@ } if (val != values[i]) { - printf("Decoded value (%Ld) does not match the original value (%Ld)!\n", val, values[i]); + printf("Decoded value (%lld) does not match the original value (%lld)!\n", val, values[i]); return 1; } } Index: ossp-pkg/xds/regression-tests/xml-uint64.c RCS File: /v/ossp/cvs/ossp-pkg/xds/regression-tests/Attic/xml-uint64.c,v rcsdiff -q -kk '-r1.1' '-r1.2' -u '/v/ossp/cvs/ossp-pkg/xds/regression-tests/Attic/xml-uint64.c,v' 2>/dev/null --- xml-uint64.c 2001/07/23 16:17:44 1.1 +++ xml-uint64.c 2001/07/23 16:45:11 1.2 @@ -103,7 +103,7 @@ } if (val != values[i]) { - printf("Decoded value (%Lu) does not match the original value (%Lu)!\n", val, values[i]); + printf("Decoded value (%llu) does not match the original value (%llu)!\n", val, values[i]); return 1; } }