C++11 tidying.
[dcpomatic.git] / src / lib / image.cc
index 52e8878add58203b7b474e9468c3b5fb1fa81879..03fe494736b92faff551a31860ff75924ecde1e6 100644 (file)
@@ -102,8 +102,8 @@ dcp::Size
 Image::sample_size (int n) const
 {
        return dcp::Size (
-               lrint (ceil(static_cast<double>(size().width) / horizontal_factor (n))),
-               lrint (ceil(static_cast<double>(size().height) / vertical_factor (n)))
+               lrint (ceil(static_cast<double>(size().width) / horizontal_factor(n))),
+               lrint (ceil(static_cast<double>(size().height) / vertical_factor(n)))
                );
 }