ossp-pkg/xds/xml-encode-int64.c 1.1 -> 1.2
--- 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, "<int64>%Ld</int64>", value);
+ rc = snprintf(buffer, buffer_size, "<int64>%lld</int64>", value);
if (rc < 0)
return buffer_size*2;
assert(rc >= 15);
|
|