diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2007-09-20 13:41:34 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2007-09-20 13:41:34 +0000 |
commit | 1ba359624a8b6efc097c4189090ebd4024a4f4f0 (patch) | |
tree | 351ddf8fa9d436f15e4896f2a7d48d7b522c207d /io | |
parent | 2b4a98323799fc2bf062eb39707930e1b8fee144 (diff) |
INTEGRATION: CWS os2port01 (1.9.28); FILE MERGED
2007/07/17 11:39:00 obr 1.9.28.2: RESYNC: (1.9-1.10); FILE MERGED
2006/12/28 15:00:39 ydario 1.9.28.1: OS/2 initial import.
Diffstat (limited to 'io')
-rw-r--r-- | io/test/stm/datatest.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/io/test/stm/datatest.cxx b/io/test/stm/datatest.cxx index 9b2ff92eb..d1c970fd4 100644 --- a/io/test/stm/datatest.cxx +++ b/io/test/stm/datatest.cxx @@ -4,9 +4,9 @@ * * $RCSfile: datatest.cxx,v $ * - * $Revision: 1.10 $ + * $Revision: 1.11 $ * - * last change: $Author: obo $ $Date: 2006-09-16 23:45:12 $ + * last change: $Author: vg $ $Date: 2007-09-20 14:41:34 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -301,8 +301,8 @@ void ODataStreamTest::testSimple( const Reference < XDataInputStream > &rInput, rOutput->writeDouble( (double) 42.42 ); ERROR_ASSERT( rInput->readDouble() == 42.42 , "double read/write mismatch" ); - rOutput->writeHyper( 0x123456789abcdef ); - ERROR_ASSERT( rInput->readHyper() == 0x123456789abcdef , "int64 read/write mismatch" ); + rOutput->writeHyper( 0x123456789abcdefLL ); + ERROR_ASSERT( rInput->readHyper() == 0x123456789abcdefLL , "int64 read/write mismatch" ); rOutput->writeUTF( OUString::createFromAscii("Live long and prosper !") ); ERROR_ASSERT( rInput->readUTF() == OUString::createFromAscii("Live long and prosper !") , |