summaryrefslogtreecommitdiffstats
path: root/third_party/jpeg-xl/lib/jxl/headers.cc
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/jpeg-xl/lib/jxl/headers.cc')
-rw-r--r--third_party/jpeg-xl/lib/jxl/headers.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/jpeg-xl/lib/jxl/headers.cc b/third_party/jpeg-xl/lib/jxl/headers.cc
index db88147687..52e7cf5db3 100644
--- a/third_party/jpeg-xl/lib/jxl/headers.cc
+++ b/third_party/jpeg-xl/lib/jxl/headers.cc
@@ -17,7 +17,7 @@ struct Rational {
// Returns floor(multiplicand * rational).
constexpr uint32_t MulTruncate(uint32_t multiplicand) const {
- return uint64_t(multiplicand) * num / den;
+ return static_cast<uint64_t>(multiplicand) * num / den;
}
uint32_t num;