From 1db0393d21a9083586d5c055718807ec3d25f8fe Mon Sep 17 00:00:00 2001 From: Robin Watts Date: Wed, 6 Jan 2016 17:43:59 +0000 Subject: Squash some warnings --- source/fitz/ftoa.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/fitz/ftoa.c') diff --git a/source/fitz/ftoa.c b/source/fitz/ftoa.c index d58cfce9..db2b87bb 100644 --- a/source/fitz/ftoa.c +++ b/source/fitz/ftoa.c @@ -83,7 +83,7 @@ multiply(diy_fp_t x, diy_fp_t y) c = y.f >> half; d = y.f & mask; ac = a * c; bc = b * c; ad = a * d; bd = b * d; tmp = (bd >> half) + (ad & mask) + (bc & mask); - tmp += 1U << (half - 1); /* Round. */ + tmp += ((uint64_t)1U) << (half - 1); /* Round. */ r.f = ac + (ad >> half) + (bc >> half) + (tmp >> half); r.e = x.e + y.e + half * 2; return r; -- cgit v1.2.3