diff options
Diffstat (limited to 'shell/source')
-rw-r--r-- | shell/source/tools/lngconvex/lngconvex.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/source/tools/lngconvex/lngconvex.cxx b/shell/source/tools/lngconvex/lngconvex.cxx index 49edc07ad92c..61884e65a8a5 100644 --- a/shell/source/tools/lngconvex/lngconvex.cxx +++ b/shell/source/tools/lngconvex/lngconvex.cxx @@ -343,7 +343,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 - unsigned char BOM[3] = {0xEF, 0xBB, 0xBF}; + unsigned char const BOM[3] = {0xEF, 0xBB, 0xBF}; char buff[3]; in.read(&buff[0], 3); |