diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-06-28 10:00:18 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-06-28 10:00:18 +0200 |
commit | 90cd07ee2f287059fc21e3f1ddf92ee08ac4f5c2 (patch) | |
tree | 413186d21c11bc7c1eb6436e882ec4506f6d4aa7 | |
parent | 101971ab1c32ad386149bdc1797045b3f43dbe20 (diff) |
-Werror=ignored-qualifiers (GCC 8)
Change-Id: I65b906cf312a436b1b36a909402e5dfca96af3d7
-rw-r--r-- | filter/source/graphicfilter/egif/egif.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/filter/source/graphicfilter/egif/egif.cxx b/filter/source/graphicfilter/egif/egif.cxx index ee4e824b9930..ba08f15718a2 100644 --- a/filter/source/graphicfilter/egif/egif.cxx +++ b/filter/source/graphicfilter/egif/egif.cxx @@ -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 ); |