summaryrefslogtreecommitdiff
path: root/src/dcp.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-07-31 10:37:56 +0100
committerCarl Hetherington <cth@carlh.net>2012-07-31 10:37:56 +0100
commitaaa33afbc17d60f9e836b4a2ad2e7ec2c294b837 (patch)
tree12a4815111b33da6cc8611e576154c3a1ad29810 /src/dcp.cc
parent72d6b15182a2f43cccd99fef03e69583d8dd6e78 (diff)
Tweak.
Diffstat (limited to 'src/dcp.cc')
-rw-r--r--src/dcp.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dcp.cc b/src/dcp.cc
index 67c56f99..6b834a70 100644
--- a/src/dcp.cc
+++ b/src/dcp.cc
@@ -332,7 +332,7 @@ DCP::equals (DCP const & other, EqualityFlags flags) const
list<shared_ptr<Asset> >::const_iterator b = other._assets.begin ();
while (a != _assets.end ()) {
- list<string> n = (*a)->equals (*b->get(), flags);
+ list<string> n = (*a)->equals (*b, flags);
notes.merge (n);
++a;
++b;