summaryrefslogtreecommitdiff
path: root/sal/qa/ByteSequence
diff options
context:
space:
mode:
authorLars Langhans <lla@openoffice.org>2003-03-10 09:36:05 +0000
committerLars Langhans <lla@openoffice.org>2003-03-10 09:36:05 +0000
commit283d991d73fd9bc32e11965fa351ba7397acc214 (patch)
treee25f4a74d86e9b92b7bf9700ec1418066057711d /sal/qa/ByteSequence
parentdb76000c5c5af51be4ea95e5e3ac1df5d80962c6 (diff)
change printf to printf with '#'
Diffstat (limited to 'sal/qa/ByteSequence')
-rw-r--r--sal/qa/ByteSequence/ByteSequence.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/sal/qa/ByteSequence/ByteSequence.cxx b/sal/qa/ByteSequence/ByteSequence.cxx
index e277d6d9b..8084a4a23 100644
--- a/sal/qa/ByteSequence/ByteSequence.cxx
+++ b/sal/qa/ByteSequence/ByteSequence.cxx
@@ -81,10 +81,10 @@ class ctor : public CppUnit::TestFixture
sal_Int8 * pElements = &kTestByte4;
sal_Int32 len = kTestByteCount1;
::rtl::ByteSequence aByteSeq( pElements, len);
- printf("the kTestByte4 is %d\n", kTestByte4);
- printf("the aByteSeq[0] is %d\n", aByteSeq[0]);
- printf("the aByteSeq[1] is %d\n", aByteSeq[1]);
- printf("the aByteSeq[2] is %d\n", aByteSeq[2]);
+ printf("# the kTestByte4 is %d\n", kTestByte4);
+ printf("# the aByteSeq[0] is %d\n", aByteSeq[0]);
+ printf("# the aByteSeq[1] is %d\n", aByteSeq[1]);
+ printf("# the aByteSeq[2] is %d\n", aByteSeq[2]);
//printf("ctor004\n");
CPPUNIT_ASSERT_MESSAGE
(
@@ -526,10 +526,10 @@ public:
{
::rtl::ByteSequence aByteSeq( &kTestByteSeq3 );
sal_Int8 nValue = aByteSeq[0];
- printf("the kTestChar3 is %d\n", kTestChar3);
- printf("the aByteSeq[0] is %d\n", aByteSeq[0]);
- printf("the aByteSeq[1] is %d\n", aByteSeq[1]);
- printf("the aByteSeq[2] is %d\n", aByteSeq[2]);
+ printf("# the kTestChar3 is %d\n", kTestChar3);
+ printf("# the aByteSeq[0] is %d\n", aByteSeq[0]);
+ printf("# the aByteSeq[1] is %d\n", aByteSeq[1]);
+ printf("# the aByteSeq[2] is %d\n", aByteSeq[2]);
CPPUNIT_ASSERT_MESSAGE
(
"Obtains a reference to byte indexed at given position: reference count = 1",