summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKaloian Manassiev <kaloian.manassiev@mongodb.com>2014-10-28 17:26:48 -0400
committerKaloian Manassiev <kaloian.manassiev@mongodb.com>2014-10-28 17:26:48 -0400
commit4f4a5103f190dd7d1b01391546f1c7cb5b2adf5b (patch)
treea0dfb401cbf5f2f7eff2c76690d25387de709cbd /src
parent370dd5521a9c218cd687e13eb833aa85a6d32f7c (diff)
downloadmongo-4f4a5103f190dd7d1b01391546f1c7cb5b2adf5b.tar.gz
Fix signed/unsigned warning error
Diffstat (limited to 'src')
-rw-r--r--src/mongo/db/concurrency/lock_state.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/concurrency/lock_state.cpp b/src/mongo/db/concurrency/lock_state.cpp
index 049f88f1920..5a59a6e50b1 100644
--- a/src/mongo/db/concurrency/lock_state.cpp
+++ b/src/mongo/db/concurrency/lock_state.cpp
@@ -97,7 +97,7 @@ namespace mongo {
/**
* Dumps the contents of the global lock manager to the server log for diagnostics.
*/
- const long long LockMgrDumpThrottleMicros = 30 * Timer::microsPerSecond;
+ const uint64_t LockMgrDumpThrottleMicros = 30 * Timer::microsPerSecond;
AtomicUInt64 lastDumpTimestampMicros(0);
void dumpGlobalLockManagerThrottled() {