summaryrefslogtreecommitdiff
path: root/stoc
diff options
context:
space:
mode:
authorDaniel Boelzle <dbo@openoffice.org>2000-11-17 11:09:18 +0000
committerDaniel Boelzle <dbo@openoffice.org>2000-11-17 11:09:18 +0000
commitd754cc7ded8109647cef10f0df466eb5bb2c9980 (patch)
tree6e3ea5497021b9ac0645ff8739f921de001fd64b /stoc
parent439b9fac529a6b9290728076add441a38866bb8a (diff)
fixed tests
Diffstat (limited to 'stoc')
-rw-r--r--stoc/test/testconv.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/stoc/test/testconv.cxx b/stoc/test/testconv.cxx
index 5bacf288d1fe..a4787218f2af 100644
--- a/stoc/test/testconv.cxx
+++ b/stoc/test/testconv.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: testconv.cxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 15:29:35 $
+ * last change: $Author: dbo $ $Date: 2000-11-17 12:09:18 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -109,7 +109,7 @@ static void printValue( const Any & rVal )
case TypeClass_CHAR:
{
char ar[2];
- ar[0] = (char)(sal_Unicode)rVal.getValue();
+ ar[0] = (char)*(sal_Unicode *)rVal.getValue();
ar[1] = 0;
printf( ar );
break;