diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-08-28 01:23:13 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-08-28 01:52:22 +0200 |
| commit | d2d6f708e486caff1b53b6e75a577db794514604 (patch) | |
| tree | cf7e3936ccf026b62e458496d750eea82566338f /src/sync.cpp | |
| parent | Merge pull request #4377 (diff) | |
| download | discoin-d2d6f708e486caff1b53b6e75a577db794514604.tar.xz discoin-d2d6f708e486caff1b53b6e75a577db794514604.zip | |
Fix build with DEBUG_LOCKORDER
Fixes #4771
Diffstat (limited to 'src/sync.cpp')
| -rw-r--r-- | src/sync.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/sync.cpp b/src/sync.cpp index e624a9ee8..066c1ca74 100644 --- a/src/sync.cpp +++ b/src/sync.cpp @@ -5,8 +5,11 @@ #include "sync.h" #include "util.h" +#include "utilstrencodings.h" #include <boost/foreach.hpp> +#include <boost/thread.hpp> +#include <stdio.h> #ifdef DEBUG_LOCKCONTENTION void PrintLockContention(const char* pszName, const char* pszFile, int nLine) |