From 086aec27ddfd72dc21fffb0466cb5c815e2b4169 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Tue, 1 Sep 2015 20:04:43 +0300 Subject: WaE: C-style cast from const sal_uInt64 * to sal_uInt8 * [loplugin:cstylecast] Change-Id: I2ab166ab0286213bf61f83fc257a3cc7123413c6 --- vcl/opengl/salbmp.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vcl/opengl/salbmp.cxx b/vcl/opengl/salbmp.cxx index 30ef71f171d3..ee71aded8cf4 100644 --- a/vcl/opengl/salbmp.cxx +++ b/vcl/opengl/salbmp.cxx @@ -514,7 +514,7 @@ bool OpenGLSalBitmap::calcChecksumGL(OpenGLTexture& rInputTexture, ChecksumType& OUString FragShader("areaHashCRC64TFragmentShader"); static const OpenGLTexture aCRCTableTexture(512, 1, GL_RGBA, GL_UNSIGNED_BYTE, - (sal_uInt8*)(vcl_get_crc64_table())); + const_cast(reinterpret_cast(vcl_get_crc64_table()))); // First Pass -- cgit