discomfitor pushed a commit to branch master. http://git.enlightenment.org/apps/terminology.git/commit/?id=eb25dabf09de07946b833c8f24b22939a3a94bff
commit eb25dabf09de07946b833c8f24b22939a3a94bff Author: Mike Blumenkrantz <[email protected]> Date: Tue Jul 28 16:07:03 2015 -0400 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) --- src/bin/tycat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/tycat.c b/src/bin/tycat.c index f460efa..1dec71c 100644 --- a/src/bin/tycat.c +++ b/src/bin/tycat.c @@ -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); --
