Commit 52aad9dfc6568b7eafefead5b49bad7e61f7938c

Werner Lemberg 2015-09-29T12:38:11

[raster] Minor style fix.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/raster/ftraster.c b/src/raster/ftraster.c
index 1c51f91..e4bab98 100644
--- a/src/raster/ftraster.c
+++ b/src/raster/ftraster.c
@@ -2114,7 +2114,7 @@
     while ( current )
     {
       current->X       = *current->offset;
-      current->offset += current->flags & Flow_Up ? 1 : -1;
+      current->offset += ( current->flags & Flow_Up ) ? 1 : -1;
       current->height--;
       current = current->link;
     }