Skip to content

Commit

Permalink
BaseTest: Initialize variable properly
Browse files Browse the repository at this point in the history
Change-Id: I8b20030e19177bc3b9e1caad86aea8594406cbad
  • Loading branch information
jcaden committed Sep 28, 2016
1 parent 99fcbbb commit 18e2268
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/BaseTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ void F::start_client()

void F::stop_client (std::unique_lock <std::mutex> &lock)
{
bool wasLocked;
bool wasLocked = false;

if (lock) {
wasLocked = true;
Expand Down

0 comments on commit 18e2268

Please sign in to comment.