Some more loplugin:cstylecast: slideshow

Change-Id: I5cba157aa69b979a1e821f267f0560dd16533677
This commit is contained in:
Stephan Bergmann 2015-01-20 11:24:13 +01:00
parent ea0bb58d98
commit e4fd2972e4

View File

@ -337,7 +337,7 @@ void OGLTransitionerImpl::impl_initializeFlags( bool const bValidContext )
const GLubyte* vendor = glGetString( GL_VENDOR );
/* TODO: check for version once the bug in fglrx driver is fixed */
mbBrokenTexturesATI = (vendor && strcmp( (const char *) vendor, "ATI Technologies Inc." ) == 0 );
mbBrokenTexturesATI = (vendor && strcmp( reinterpret_cast<const char *>(vendor), "ATI Technologies Inc." ) == 0 );
}
CHECK_GL_ERROR();
}