# HG changeset patch # User zas_ # Date 1207260194 0 # Node ID 62f2f8f7cb2d21d5687c0b96ce4c8750b899c55e # Parent 7754bfc0d98a6002670b227026a6eb41d4efc0c9 Add parenthesis around affection to clear a gcc warning. diff -r 7754bfc0d98a -r 62f2f8f7cb2d src/image-overlay.c --- a/src/image-overlay.c Thu Apr 03 22:01:08 2008 +0000 +++ b/src/image-overlay.c Thu Apr 03 22:03:14 2008 +0000 @@ -127,7 +127,7 @@ /* search and destroy empty lines */ end = new->str; - while (start = strchr(end, '\n')) + while ((start = strchr(end, '\n'))) { end = start; while (*++(end) == '\n')