Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c138bd9a authored by Chris Manton's avatar Chris Manton Committed by Automerger Merge Worker
Browse files

Actually call method after binding am: 9d0b53f6

Change-Id: I10540c76c1049601139b6dab8733df947fb8c1e5
parents fedd8387 9d0b53f6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -103,7 +103,7 @@ void Dumpsys::impl::UnregisterDumpsysFunction(const void* token) {
void Dumpsys::Dump(int fd, const char** args) {
  std::promise<void> promise;
  auto future = promise.get_future();
  GetHandler()->BindOnceOn(pimpl_.get(), &Dumpsys::impl::DumpWithArgs, fd, args, std::move(promise));
  CallOn(pimpl_.get(), &Dumpsys::impl::DumpWithArgs, fd, args, std::move(promise));
  future.get();
}