From 52aad9dfc6568b7eafefead5b49bad7e61f7938c Mon Sep 17 00:00:00 2001 From: Werner Lemberg Date: Tue, 29 Sep 2015 12:38:11 +0200 Subject: [PATCH] [raster] Minor style fix. --- src/raster/ftraster.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/raster/ftraster.c b/src/raster/ftraster.c index 1c51f912e..e4bab9872 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; }