summaryrefslogtreecommitdiff
path: root/sw/source/filter/ww8/docxattributeoutput.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/filter/ww8/docxattributeoutput.cxx')
-rw-r--r--sw/source/filter/ww8/docxattributeoutput.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx b/sw/source/filter/ww8/docxattributeoutput.cxx
index 504fa6033b36..a7c69319243f 100644
--- a/sw/source/filter/ww8/docxattributeoutput.cxx
+++ b/sw/source/filter/ww8/docxattributeoutput.cxx
@@ -6541,7 +6541,7 @@ void DocxAttributeOutput::EmbedFontStyle( const OUString& name, int tag, FontFam
fontKey[ 0 ] = fontKey[ 15 ] = m_nextFontId % 256;
fontKeyStr[ 1 ] = fontKeyStr[ 35 ] = toHexChar(( m_nextFontId % 256 ) / 16 );
fontKeyStr[ 2 ] = fontKeyStr[ 36 ] = toHexChar(( m_nextFontId % 256 ) % 16 );
- char buffer[ 4096 ];
+ unsigned char buffer[ 4096 ];
sal_uInt64 readSize;
file.read( buffer, 32, readSize );
if( readSize < 32 )