From 409f2838b69d1463125cce1bb60a5cb73cce5578 Mon Sep 17 00:00:00 2001 From: Lars Langhans Date: Mon, 10 Mar 2003 09:36:05 +0000 Subject: change printf to printf with '#' --- sal/qa/ByteSequence/ByteSequence.cxx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'sal/qa/ByteSequence') diff --git a/sal/qa/ByteSequence/ByteSequence.cxx b/sal/qa/ByteSequence/ByteSequence.cxx index cd19b98f2a05..f39b6035367b 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", -- cgit