ossp-pkg/xds/regression-tests/xdr-int64.c 1.2 -> 1.3
--- xdr-int64.c 2001/07/18 18:26:33 1.2
+++ xdr-int64.c 2001/07/18 18:58:46 1.3
@@ -78,7 +78,7 @@
{
if (xds_encode(xds, "int", values[i]) != XDS_OK)
{
- printf("xds_encode(values[%d]) failed!", i);
+ printf("xds_encode(values[%d]) failed!\n", i);
return 1;
}
}
@@ -127,12 +127,12 @@
int64_t tmp;
if (xds_decode(xds, "int", &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;
}
}
|
|