Skip to content

Commit 9b05df1

Browse files
committed
format
1 parent 6c2c9b4 commit 9b05df1

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

lib/ConsumerImpl.cc

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1846,10 +1846,8 @@ void ConsumerImpl::seekAsyncInternal(long requestId, const SharedBuffer& seek, c
18461846
LockGuard lock{mutex_};
18471847
seekStatus_ = SeekStatus::NOT_STARTED;
18481848
lastSeekArg_ = previousLastSeekArg;
1849-
executor_->postWork(
1850-
[self, callback{std::exchange(seekCallback_, std::nullopt).value()}, result]() {
1851-
callback(result);
1852-
});
1849+
executor_->postWork([self, callback{std::exchange(seekCallback_, std::nullopt).value()},
1850+
result]() { callback(result); });
18531851
}
18541852
});
18551853
}

0 commit comments

Comments
 (0)