Kaydet (Commit) 5ba49392 authored tarafından David Tardon's avatar David Tardon

fix ppc build

char is a type distinct from both unsigned char and signed char.

Change-Id: Ia9de35ef42101ce818880b810c44547f1c1a417a
üst 0e1c9b0a
......@@ -298,7 +298,7 @@ void OleHelper::exportGuid( BinaryOutputStream& rOStr, const SvGlobalName& rId )
memcpy(&b, pBytes+6, sizeof(sal_uInt16));
rOStr << b;
rOStr.writeArray( (sal_Char *)&pBytes[ 8 ], 8 );
rOStr.writeArray( (sal_uInt8 *)&pBytes[ 8 ], 8 );
}
OUString OleHelper::importGuid( BinaryInputStream& rInStrm )
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment