From: Chris Michael Date: Tue, 17 Nov 2015 14:03:53 +0000 (-0500) Subject: evas-gl: Remove extra parentheses X-Git-Tag: upstream/1.20.0~8199 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a043f8d04d8a9646da5e0f546d0c40980dc7d068;p=platform%2Fupstream%2Fefl.git evas-gl: Remove extra parentheses clang warns of equality comparison with extraneous parentheses in these cases. Remove the extra parens as they are not needed anyway @fix Signed-off-by: Chris Michael --- diff --git a/src/modules/evas/engines/gl_common/evas_gl_api.c b/src/modules/evas/engines/gl_common/evas_gl_api.c index e469fb3..42e6c7e 100644 --- a/src/modules/evas/engines/gl_common/evas_gl_api.c +++ b/src/modules/evas/engines/gl_common/evas_gl_api.c @@ -953,7 +953,7 @@ _evgl_glGetFloatv(GLenum pname, GLfloat* params) } } // If it hasn't been initialized yet, return img object size - if ((pname == GL_SCISSOR_BOX) )//|| (pname == GL_VIEWPORT)) + if (pname == GL_SCISSOR_BOX) //|| (pname == GL_VIEWPORT)) { params[0] = (GLfloat)0.0; params[1] = (GLfloat)0.0; @@ -1149,7 +1149,7 @@ _evgl_glGetIntegerv(GLenum pname, GLint* params) } } // If it hasn't been initialized yet, return img object size - if ((pname == GL_SCISSOR_BOX) )//|| (pname == GL_VIEWPORT)) + if (pname == GL_SCISSOR_BOX) //|| (pname == GL_VIEWPORT)) { params[0] = 0; params[1] = 0;