diff options
| author | Wladimir J. van der Laan <[email protected]> | 2012-08-29 20:25:37 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2012-08-29 20:25:37 +0200 |
| commit | 4d1d94c56cf60e22e9199f8c37c5634752b570f5 (patch) | |
| tree | fff3e36bee446458372cbed586c8e65dd94b6c94 /src/wallet.cpp | |
| parent | implement CreateThread with boost::thread (diff) | |
| download | discoin-4d1d94c56cf60e22e9199f8c37c5634752b570f5.tar.xz discoin-4d1d94c56cf60e22e9199f8c37c5634752b570f5.zip | |
Rename CreateThread to NewThread
Prevent clash with win32 API symbol
Diffstat (limited to 'src/wallet.cpp')
| -rw-r--r-- | src/wallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet.cpp b/src/wallet.cpp index dc019d492..f2c21129b 100644 --- a/src/wallet.cpp +++ b/src/wallet.cpp @@ -1385,7 +1385,7 @@ int CWallet::LoadWallet(bool& fFirstRunRet) return nLoadWalletRet; fFirstRunRet = !vchDefaultKey.IsValid(); - CreateThread(ThreadFlushWalletDB, &strWalletFile); + NewThread(ThreadFlushWalletDB, &strWalletFile); return DB_LOAD_OK; } |