mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2025-01-19 01:26:47 +02:00
Fix uninitialised variable
This commit is contained in:
parent
f702c92262
commit
e5346c54df
1 changed files with 1 additions and 1 deletions
|
@ -334,7 +334,7 @@ struct CurlDownloader : public Downloader
|
||||||
{
|
{
|
||||||
std::map<CURL *, std::shared_ptr<DownloadItem>> items;
|
std::map<CURL *, std::shared_ptr<DownloadItem>> items;
|
||||||
|
|
||||||
bool quit;
|
bool quit = false;
|
||||||
|
|
||||||
std::chrono::steady_clock::time_point nextWakeup;
|
std::chrono::steady_clock::time_point nextWakeup;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue