Index: ossp-pkg/xds/xml-decode-int64.c RCS File: /v/ossp/cvs/ossp-pkg/xds/Attic/xml-decode-int64.c,v rcsdiff -q -kk '-r1.1' '-r1.2' -u '/v/ossp/cvs/ossp-pkg/xds/Attic/xml-decode-int64.c,v' 2>/dev/null --- xml-decode-int64.c 2001/07/23 16:17:43 1.1 +++ xml-decode-int64.c 2001/07/23 16:40:38 1.2 @@ -47,7 +47,7 @@ /* Format value into buffer. */ value = va_arg(*args, xds_int64_t*); - rc = sscanf(buffer, "%Ld%n", value, &len); + rc = sscanf(buffer, "%lld%n", value, &len); if (rc <= 0) return XDS_ERR_UNDERFLOW; Index: ossp-pkg/xds/xml-decode-uint64.c RCS File: /v/ossp/cvs/ossp-pkg/xds/Attic/xml-decode-uint64.c,v rcsdiff -q -kk '-r1.1' '-r1.2' -u '/v/ossp/cvs/ossp-pkg/xds/Attic/xml-decode-uint64.c,v' 2>/dev/null --- xml-decode-uint64.c 2001/07/23 16:17:43 1.1 +++ xml-decode-uint64.c 2001/07/23 16:40:38 1.2 @@ -47,7 +47,7 @@ /* Format value into buffer. */ value = va_arg(*args, xds_uint64_t*); - rc = sscanf(buffer, "%Lu%n", value, &len); + rc = sscanf(buffer, "%llu%n", value, &len); if (rc <= 0) return XDS_ERR_UNDERFLOW; Index: ossp-pkg/xds/xml-encode-int64.c RCS File: /v/ossp/cvs/ossp-pkg/xds/Attic/xml-encode-int64.c,v rcsdiff -q -kk '-r1.1' '-r1.2' -u '/v/ossp/cvs/ossp-pkg/xds/Attic/xml-encode-int64.c,v' 2>/dev/null --- xml-encode-int64.c 2001/07/23 16:17:43 1.1 +++ xml-encode-int64.c 2001/07/23 16:40:38 1.2 @@ -46,7 +46,7 @@ /* Format value into buffer. */ value = va_arg(*args, xds_int64_t); - rc = snprintf(buffer, buffer_size, "%Ld", value); + rc = snprintf(buffer, buffer_size, "%lld", value); if (rc < 0) return buffer_size*2; assert(rc >= 15); Index: ossp-pkg/xds/xml-encode-uint64.c RCS File: /v/ossp/cvs/ossp-pkg/xds/Attic/xml-encode-uint64.c,v rcsdiff -q -kk '-r1.1' '-r1.2' -u '/v/ossp/cvs/ossp-pkg/xds/Attic/xml-encode-uint64.c,v' 2>/dev/null --- xml-encode-uint64.c 2001/07/23 16:17:43 1.1 +++ xml-encode-uint64.c 2001/07/23 16:40:38 1.2 @@ -46,7 +46,7 @@ /* Format value into buffer. */ value = va_arg(*args, xds_uint64_t); - rc = snprintf(buffer, buffer_size, "%Lu", value); + rc = snprintf(buffer, buffer_size, "%llu", value); if (rc < 0) return buffer_size*2; assert(rc >= 15);