diff options
-rw-r--r-- | sax/qa/cppunit/test_converter.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sax/qa/cppunit/test_converter.cxx b/sax/qa/cppunit/test_converter.cxx index 7becf74af56a..26627f8d1742 100644 --- a/sax/qa/cppunit/test_converter.cxx +++ b/sax/qa/cppunit/test_converter.cxx @@ -545,7 +545,7 @@ void ConverterTest::testBase64() tempSequence = tempSeq.getAsConstList(); doTestEncodeBase64("BQIDAAABAgM=", tempSequence); doTestDecodeBase64(tempSequence, "BQIDAAABAgM="); - tempSeq[0] = sal_Int8(200); + tempSeq[0] = sal_Int8(sal_uInt8(200)); tempSeq[1] = sal_Int8(31); tempSeq[2] = sal_Int8(77); tempSeq[3] = sal_Int8(111); |