summaryrefslogtreecommitdiffstats
path: root/video/out/opengl/video_shaders.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2017-07-24 07:21:25 +0200
committerwm4 <wm4@nowhere>2017-07-24 08:08:02 +0200
commit3d0f86145ce211eee623b661d558ef3405d75933 (patch)
tree0da2a3e6da3c4a6c798a7f2a028fccda2fbf2426 /video/out/opengl/video_shaders.c
parent64d56114ed9258efe2e864315d7130bb58a03d52 (diff)
downloadmpv-3d0f86145ce211eee623b661d558ef3405d75933.tar.bz2
mpv-3d0f86145ce211eee623b661d558ef3405d75933.tar.xz
vo_opengl: check format on some printf-like calls
Fix 1 incorrect use.
Diffstat (limited to 'video/out/opengl/video_shaders.c')
-rw-r--r--video/out/opengl/video_shaders.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/out/opengl/video_shaders.c b/video/out/opengl/video_shaders.c
index e83973b4b8..3381d532b6 100644
--- a/video/out/opengl/video_shaders.c
+++ b/video/out/opengl/video_shaders.c
@@ -454,7 +454,7 @@ void pass_ootf(struct gl_shader_cache *sc, enum mp_csp_light light, float peak)
if (light == MP_CSP_LIGHT_DISPLAY)
return;
- GLSLF("// apply ootf\n", sc);
+ GLSLF("// apply ootf\n");
GLSLF("color.rgb *= vec3(%f);\n", peak);
switch (light)