Kaydet (Commit) 90cd07ee authored tarafından Stephan Bergmann's avatar Stephan Bergmann

-Werror=ignored-qualifiers (GCC 8)

Change-Id: I65b906cf312a436b1b36a909402e5dfca96af3d7
üst 101971ab
......@@ -338,8 +338,8 @@ void GIFWriter::WriteLoopExtension( const Animation& rAnimation )
if( nLoopCount )
nLoopCount--;
const sal_uInt8 cLoByte = (const sal_uInt8) nLoopCount;
const sal_uInt8 cHiByte = (const sal_uInt8) ( nLoopCount >> 8 );
const sal_uInt8 cLoByte = (sal_uInt8) nLoopCount;
const sal_uInt8 cHiByte = (sal_uInt8) ( nLoopCount >> 8 );
m_rGIF.WriteUChar( 0x21 );
m_rGIF.WriteUChar( 0xff );
......
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