Skip to content

Commit

Permalink
Buildfix
Browse files Browse the repository at this point in the history
  • Loading branch information
hrydgard committed Jan 29, 2024
1 parent aab5285 commit aa7f887
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Core/Reporting.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
#include <deque>
#include <thread>
#include <mutex>
#include <atomic>
#include <condition_variable>
#include <set>
#include <cstdlib>
Expand Down Expand Up @@ -113,8 +114,8 @@ namespace Reporting
static std::condition_variable crcCond;
static Path crcFilename;
static std::map<Path, u32> crcResults;
static std::atomic<bool> crcPending = false;
static std::atomic<bool> crcCancel = false;
static std::atomic<bool> crcPending{};
static std::atomic<bool> crcCancel{};
static std::thread crcThread;

static u32 CalculateCRC(BlockDevice *blockDevice, std::atomic<bool> *cancel) {
Expand Down

0 comments on commit aa7f887

Please sign in to comment.