gl_video: remove double const qualifier

This fixes a warning when compiling with clang.
This commit is contained in:
Stefano Pigozzi 2013-03-30 20:33:09 +01:00
parent 042ac56226
commit e31567fe41
1 changed files with 1 additions and 1 deletions

View File

@ -224,7 +224,7 @@ static const char *osd_shaders[SUBBITMAP_COUNT] = {
[SUBBITMAP_RGBA] = "frag_osd_rgba",
};
static const const struct gl_video_opts gl_video_opts_def = {
static const struct gl_video_opts gl_video_opts_def = {
.npot = 1,
.dither_depth = -1,
.fbo_format = GL_RGB,