diff options
author | Matt Corallo <matt@bluematt.me> | 2012-05-09 01:40:33 -0400 |
---|---|---|
committer | Matt Corallo <matt@bluematt.me> | 2012-05-09 01:41:07 -0400 |
commit | 2ea78ec7fd1624e88a3067f8a6a77ec0e7325063 (patch) | |
tree | c5db8dcceeb841d713ccea236b5d03999e1d622f /src | |
parent | a2ea7975936cab4c56dd737de37004ae3298104d (diff) |
Fix DEBUG_LOCKCONTENTION
Diffstat (limited to 'src')
-rw-r--r-- | src/util.h | 4 |
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 } } |