summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/base/ftbbox.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/base/ftbbox.c b/src/base/ftbbox.c
index a0b2c46f7..b70062cd6 100644
--- a/src/base/ftbbox.c
+++ b/src/base/ftbbox.c
@@ -294,10 +294,10 @@
if ( shift > 2 )
shift = 2;
- q1 <<= shift;
- q2 <<= shift;
- q3 <<= shift;
- q4 <<= shift;
+ q1 *= 1 << shift;
+ q2 *= 1 << shift;
+ q3 *= 1 << shift;
+ q4 *= 1 << shift;
}
else
{