diff options
author | Grazvydas Ignotas <[email protected]> | 2018-01-14 23:45:05 +0200 |
---|---|---|
committer | Grazvydas Ignotas <[email protected]> | 2018-01-17 00:39:55 +0200 |
commit | cce982a70be5e24c6f6ee222c17c47eb8cba6921 (patch) | |
tree | 7347e86d2498470876e512956406367d10ecd1da /src/mesa/main/program_resource.c | |
parent | e3adb1abaf739f317df3a67f61aea2013e88c840 (diff) |
mesa: remove unneeded semicolons
Trivial. Found by Coccinelle.
Reviewed-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'src/mesa/main/program_resource.c')
-rw-r--r-- | src/mesa/main/program_resource.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/program_resource.c b/src/mesa/main/program_resource.c index 4eacdfb9e9a..5fa5d7573bf 100644 --- a/src/mesa/main/program_resource.c +++ b/src/mesa/main/program_resource.c @@ -200,7 +200,7 @@ _mesa_GetProgramInterfaceiv(GLuint program, GLenum programInterface, "glGetProgramInterfaceiv(%s pname %s)", _mesa_enum_to_string(programInterface), _mesa_enum_to_string(pname)); - }; + } break; case GL_MAX_NUM_COMPATIBLE_SUBROUTINES: switch (programInterface) { |