Skip to content

Commit 61c2ca8

Browse files
committed
Fix pre-commit
Signed-off-by: Tony Najjar <[email protected]>
1 parent 7410ba2 commit 61c2ca8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/bt_factory.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -588,7 +588,8 @@ TreeNode* Tree::rootNode() const
588588

589589
bool Tree::sleep(std::chrono::system_clock::duration timeout)
590590
{
591-
return wake_up_->waitFor(std::chrono::duration_cast<std::chrono::milliseconds>(timeout));
591+
return wake_up_->waitFor(
592+
std::chrono::duration_cast<std::chrono::milliseconds>(timeout));
592593
}
593594

594595
Tree::~Tree()

0 commit comments

Comments
 (0)