warnings: remove 2 "equality comparison with extraneous parentheses"

Reviewers: stefan_schmidt, cedric

Reviewed By: cedric

Subscribers: cedric

Differential Revision: https://phab.enlightenment.org/D1644

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
This commit is contained in:
Jean Guyomarc'h 2014-11-04 23:59:59 +01:00 committed by Cedric BAIL
parent dbd3bea99e
commit 704c448141
2 changed files with 2 additions and 2 deletions

View File

@ -326,7 +326,7 @@ _ecore_x_modifiers_get(void)
if (ECORE_X_MODIFIER_SHIFT)
{
if ((ECORE_X_MODIFIER_SHIFT == ECORE_X_MODIFIER_CTRL))
if (ECORE_X_MODIFIER_SHIFT == ECORE_X_MODIFIER_CTRL)
{
ERR("CTRL conflicts with other modifiers. IGNORE CTRL");
ECORE_X_MODIFIER_CTRL = 0;

View File

@ -974,7 +974,7 @@ _evgl_gles1_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;