ossp-pkg/xds/regression-tests/xdr-uint64.c 1.2 -> 1.3
--- xdr-uint64.c 2001/07/18 18:26:33 1.2
+++ xdr-uint64.c 2001/07/18 18:58:46 1.3
@@ -77,7 +77,7 @@
{
if (xds_encode(xds, "uint", values[i]) != XDS_OK)
{
- printf("xds_encode(values[%d]) failed!", i);
+ printf("xds_encode(values[%d]) failed!\n", i);
return 1;
}
}
@@ -126,12 +126,12 @@
u_int64_t tmp;
if (xds_decode(xds, "uint", &tmp) != XDS_OK)
{
- printf("xds_encode() failed for the %d value!", i);
+ printf("xds_encode() failed for the %d value!\n", i);
return 1;
}
if (values[i] != tmp)
{
- printf("The %dth value has not been decoded correctly!", i);
+ printf("The %dth value has not been decoded correctly!\n", i);
return 1;
}
}
|
|