diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-12-06 21:06:19 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-12-06 21:06:19 +0100 |
| commit | 7c27dff5817715965e86798108c596f9a1675394 (patch) | |
| tree | 3cc04867706e1f2d2a316e5fa5868a123b237f6f /src/lib/writer.cc | |
| parent | 504e234f92de578a8d1214d6a73c790a896f0a90 (diff) | |
Remove a pointless parameter that the callee can calculate.
Diffstat (limited to 'src/lib/writer.cc')
| -rw-r--r-- | src/lib/writer.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/writer.cc b/src/lib/writer.cc index 5198cfb31..69ee9055d 100644 --- a/src/lib/writer.cc +++ b/src/lib/writer.cc @@ -89,7 +89,7 @@ Writer::Writer (shared_ptr<const Film> film, weak_ptr<Job> j) int reel_index = 0; list<DCPTimePeriod> const reels = _film->reels (); BOOST_FOREACH (DCPTimePeriod p, reels) { - _reels.push_back (ReelWriter (film, p, job, reel_index++, reels.size(), _film->content_summary(p))); + _reels.push_back (ReelWriter(film, p, job, reel_index++, reels.size())); } _last_written.resize (reels.size()); |
