fix compile warning

tycat.c: In function ‘handle_edje’:
tycat.c:180:40: warning: logical not is only applied to the left hand side of comparison [-Wlogical-not-parentheses]
        (o, rp, "e/desktop/background") == EINA_TRUE)
This commit is contained in:
Mike Blumenkrantz 2015-07-28 16:07:03 -04:00
parent 05e08320ec
commit eb25dabf09
1 changed files with 1 additions and 1 deletions

View File

@ -177,7 +177,7 @@ handle_edje(char *rp)
if (edje_object_file_set
(o, rp, "terminology/backgroud") == EINA_TRUE ||
!edje_object_file_set
(o, rp, "e/desktop/background") == EINA_TRUE)
(o, rp, "e/desktop/background"))
{
Evas_Coord mw = 0, mh = 0;
edje_object_size_min_get(o, &mw, &mh);