summaryrefslogtreecommitdiff
path: root/sal/qa/ByteSequence
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2007-11-20 18:25:56 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2007-11-20 18:25:56 +0000
commit8174a626c907482538ae712e4655efd4832e7d0e (patch)
tree767c14278fe1a3f254491f95698dd09bf79e1437 /sal/qa/ByteSequence
parent3116aa75a4f7db52c3f644e1ccb460b413e5919c (diff)
INTEGRATION: CWS reportdesign01 (1.7.656); FILE MERGED
2007/10/04 09:03:54 lla 1.7.656.1: #i67655# only updates on some tests to build warning free
Diffstat (limited to 'sal/qa/ByteSequence')
-rw-r--r--sal/qa/ByteSequence/Byte_Const.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sal/qa/ByteSequence/Byte_Const.h b/sal/qa/ByteSequence/Byte_Const.h
index c1618c17f161..0cedec4b101a 100644
--- a/sal/qa/ByteSequence/Byte_Const.h
+++ b/sal/qa/ByteSequence/Byte_Const.h
@@ -45,9 +45,9 @@ sal_Int8 kTestByte6[] = {kTestByte60, kTestByte61, kTestByte62, kTestByte63, kTe
char kTestChar = 45;
char kTestChar0 = 0;
-char kTestChar1 = 500;
+ char kTestChar1 = (char)((500 & 0xff) - 256);
char kTestChar2 = 78;
-char kTestChar3 = -155;
+ char kTestChar3 = (char)(-155 & 0xff);
sal_Int32 kTestSeqLen0 = 0;
sal_Int32 kTestSeqLen1 = 5;