summaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorPascal Junck <pjunck@openoffice.org>2004-11-03 06:59:36 +0000
committerPascal Junck <pjunck@openoffice.org>2004-11-03 06:59:36 +0000
commit4f48252b21dde806954446aa17b79fea53d99feb (patch)
tree4d4caa03836070338025d79320715a573d476b77 /shell
parentaa1316deb2d18271fb5270824e83143c1497a158 (diff)
INTEGRATION: CWS desktintgr03 (1.9.2); FILE MERGED
2004/10/04 09:06:31 tra 1.9.2.2: fix comiler waring 2004/09/22 13:29:53 tra 1.9.2.1: #i34329#removed debug only assertion
Diffstat (limited to 'shell')
-rw-r--r--shell/source/tools/lngconvex/lngconvex.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/shell/source/tools/lngconvex/lngconvex.cxx b/shell/source/tools/lngconvex/lngconvex.cxx
index a27d809a2bfc..9587880aaf74 100644
--- a/shell/source/tools/lngconvex/lngconvex.cxx
+++ b/shell/source/tools/lngconvex/lngconvex.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: lngconvex.cxx,v $
*
- * $Revision: 1.10 $
+ * $Revision: 1.11 $
*
- * last change: $Author: obo $ $Date: 2004-10-13 07:47:34 $
+ * last change: $Author: pjunck $ $Date: 2004-11-03 07:59:36 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -395,7 +395,7 @@ void read_ulf_file(const std::string& FileName, Substitutor& Substitutor)
StreamExceptionsEnabler sexc_in(in);
//skip the byte-order-mark 0xEF 0xBB 0xBF, identifying UTF8 files
- char BOM[3] = {0xEF, 0xBB, 0xBF};
+ unsigned char BOM[3] = {0xEF, 0xBB, 0xBF};
char buff[3];
in.read(&buff[0], 3);