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
commit19082298f7a48feaa4c231181eee97c7f6152cc0 (patch)
treec960bcf31a77c4e0eb832bc2868dfca6668952c1 /sal/qa/ByteSequence
parentaa8db88b53dd2bbcf8ee57f28675dab743f22b54 (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 3ca4884e3..0d92e1f35 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;