From 52d2940cb94ff59b66bce633189e8fb277a54f72 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 2 May 2021 11:27:14 +0200 Subject: C++11 tidying. --- src/lib/image.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lib') diff --git a/src/lib/image.cc b/src/lib/image.cc index 52e8878ad..03fe49473 100644 --- a/src/lib/image.cc +++ b/src/lib/image.cc @@ -102,8 +102,8 @@ dcp::Size Image::sample_size (int n) const { return dcp::Size ( - lrint (ceil(static_cast(size().width) / horizontal_factor (n))), - lrint (ceil(static_cast(size().height) / vertical_factor (n))) + lrint (ceil(static_cast(size().width) / horizontal_factor(n))), + lrint (ceil(static_cast(size().height) / vertical_factor(n))) ); } -- cgit v1.2.3