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 f3ef05f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Core/Reporting.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,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 f3ef05f

Please sign in to comment.