vo_opengl: fix linkage type

Can happen on Windows, I suppose.
This commit is contained in:
wm4 2014-12-09 22:36:28 +01:00
parent 2413fc1cba
commit 5beac919d0
1 changed files with 1 additions and 1 deletions

View File

@ -141,7 +141,7 @@ static bool is_software_gl(GL *gl)
strcmp(renderer, "Mesa X11") == 0;
}
static void dummy_glBindFramebuffer(GLenum target, GLuint framebuffer)
static void GLAPIENTRY dummy_glBindFramebuffer(GLenum target, GLuint framebuffer)
{
assert(framebuffer == 0);
}