summaryrefslogtreecommitdiff
path: root/p2pvr/daemon/containerIterator.h
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2015-06-14 03:20:20 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2015-06-14 03:20:20 +0100
commit1eaa6683947f4ebe74c29b4844b47efb352f9a3b (patch)
treea887a65f8699e7dbf46e8d50c25b575e50d498b2 /p2pvr/daemon/containerIterator.h
parentSwitch to using project2's own DB mocking framework (diff)
downloadp2pvr-1eaa6683947f4ebe74c29b4844b47efb352f9a3b.tar.bz2
p2pvr-1eaa6683947f4ebe74c29b4844b47efb352f9a3b.tar.xz
p2pvr-1eaa6683947f4ebe74c29b4844b47efb352f9a3b.zip
Compatibility with AppInstance and ExecContext changes
Diffstat (limited to 'p2pvr/daemon/containerIterator.h')
-rw-r--r--p2pvr/daemon/containerIterator.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/p2pvr/daemon/containerIterator.h b/p2pvr/daemon/containerIterator.h
index 14c339d..88976af 100644
--- a/p2pvr/daemon/containerIterator.h
+++ b/p2pvr/daemon/containerIterator.h
@@ -20,7 +20,7 @@ class ContainerIterator : public IHaveSubTasks {
ObjectRowStateTmpl<typename T::value_type> rs;
for (const auto & i : *container) {
binder(rs, i);
- rs.process(boost::bind(&ContainerIterator::executeChildren, this, ec));
+ rs.process(ec, boost::bind(&ContainerIterator::executeChildren, this, ec));
}
}