aboutsummaryrefslogtreecommitdiff
path: root/src/util.h
diff options
context:
space:
mode:
authorMatt Corallo <matt@bluematt.me>2012-05-09 01:40:33 -0400
committerMatt Corallo <matt@bluematt.me>2012-05-09 01:41:07 -0400
commit2ea78ec7fd1624e88a3067f8a6a77ec0e7325063 (patch)
treec5db8dcceeb841d713ccea236b5d03999e1d622f /src/util.h
parenta2ea7975936cab4c56dd737de37004ae3298104d (diff)
downloadbitcoin-2ea78ec7fd1624e88a3067f8a6a77ec0e7325063.tar.xz
Fix DEBUG_LOCKCONTENTION
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/util.h b/src/util.h
index 5f8d0375da..81b36d31fd 100644
--- a/src/util.h
+++ b/src/util.h
@@ -217,9 +217,11 @@ public:
{
printf("LOCKCONTENTION: %s\n", pszName);
printf("Locker: %s:%d\n", pszFile, nLine);
- }
#endif
lock.lock();
+#ifdef DEBUG_LOCKCONTENTION
+ }
+#endif
}
}