diff options
author | Jakob Sinclair <[email protected]> | 2016-04-13 18:43:10 +0200 |
---|---|---|
committer | Chad Versace <[email protected]> | 2016-04-26 14:36:29 -0700 |
commit | 12da8bb5f4a9b8aab96450f8152cf9b4c20cb0a9 (patch) | |
tree | dd7ed1c94d7f79073a9fe683de5c0b44f69d315b /src/mesa/main/pipelineobj.c | |
parent | 09e4ac00ac90dd6d1f6bcb4c4e2875bb8a0ce1c6 (diff) |
mesa/main: removing double semi-colons
Trivial change. Removing unnecessary semi-colons from the code.
I don't have push access so someone reviewing this can push it.
Signed-off-by: Jakob Sinclair <[email protected]>
Reviewed-by: Alex Deucher <[email protected]>
Reviewed-by: Edward O'Callaghan <[email protected]>
Reviewed-by: Chad Versace <[email protected]>
Diffstat (limited to 'src/mesa/main/pipelineobj.c')
-rw-r--r-- | src/mesa/main/pipelineobj.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/pipelineobj.c b/src/mesa/main/pipelineobj.c index af17be2a3f4..97285a28ab0 100644 --- a/src/mesa/main/pipelineobj.c +++ b/src/mesa/main/pipelineobj.c @@ -626,7 +626,7 @@ _mesa_GetProgramPipelineiv(GLuint pipeline, GLenum pname, GLint *params) /* Are geometry shaders available in this context? */ const bool has_gs = _mesa_has_geometry_shaders(ctx); - const bool has_tess = _mesa_has_tessellation(ctx);; + const bool has_tess = _mesa_has_tessellation(ctx); if (!pipe) { _mesa_error(ctx, GL_INVALID_OPERATION, |