Check-in Number:
|
4210 | |
Date: |
2001-Jul-18 20:58:46 (local)
2001-Jul-18 18:58:46 (UTC) |
User: | simons |
Branch: | |
Comment: |
Added missing linefeed at the end of printf() output. |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/xds/regression-tests/xdr-int32.c 1.2 -> 1.3
--- xdr-int32.c 2001/07/18 18:26:33 1.2
+++ xdr-int32.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 @@
int32_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;
}
}
|
|
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;
}
}
|
|
ossp-pkg/xds/regression-tests/xdr-uint32.c 1.2 -> 1.3
--- xdr-uint32.c 2001/07/18 18:26:33 1.2
+++ xdr-uint32.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_int32_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;
}
}
|
|
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;
}
}
|
|