diff options
author | Lars Langhans <lla@openoffice.org> | 2003-03-10 09:36:05 +0000 |
---|---|---|
committer | Lars Langhans <lla@openoffice.org> | 2003-03-10 09:36:05 +0000 |
commit | 409f2838b69d1463125cce1bb60a5cb73cce5578 (patch) | |
tree | 0ca2a42d5a25318f2569687f5bab80e78ec82582 /sal/qa/ByteSequence | |
parent | 8770d0c2d1de8d72180b887c5395d13940d51d3c (diff) |
change printf to printf with '#'
Diffstat (limited to 'sal/qa/ByteSequence')
-rw-r--r-- | sal/qa/ByteSequence/ByteSequence.cxx | 16 |
1 files changed, 8 insertions, 8 deletions
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", |