diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2018-03-15 14:56:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-15 14:56:21 +0100 |
commit | 7b8914825a6b02173976eae0ca59053085d4b20a (patch) | |
tree | a913c0a57ea199dad59e4bb45a6f16f05941e797 /src/libstore | |
parent | cfdbfa6b2cc27ae5b98c5f27599bbc0fc6a104c1 (diff) | |
parent | be54f4a0b6f160f8a2b0b9e9c988fb5251f70a97 (diff) |
Merge pull request #1965 from masaeedu/master
Wrap thread local in function for Cygwin
Diffstat (limited to 'src/libstore')
-rw-r--r-- | src/libstore/download.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/download.hh b/src/libstore/download.hh index d9d525d4e..0b8d29b21 100644 --- a/src/libstore/download.hh +++ b/src/libstore/download.hh @@ -22,7 +22,7 @@ struct DownloadRequest std::string mimeType; DownloadRequest(const std::string & uri) - : uri(uri), parentAct(curActivity) { } + : uri(uri), parentAct(getCurActivity()) { } }; struct DownloadResult |