From f3d2b8a43f9fc5f056ef30eb01d0b7e7ed9f9096 Mon Sep 17 00:00:00 2001 From: Vladimir Glazounov Date: Thu, 20 Sep 2007 13:41:34 +0000 Subject: [PATCH] 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. --- io/test/stm/datatest.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/io/test/stm/datatest.cxx b/io/test/stm/datatest.cxx index 1d55f3e03534..fe12720e73d3 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 !") ,