diff options
author | Kaloian Manassiev <kaloian.manassiev@mongodb.com> | 2014-10-28 17:26:48 -0400 |
---|---|---|
committer | Kaloian Manassiev <kaloian.manassiev@mongodb.com> | 2014-10-28 17:26:48 -0400 |
commit | 4f4a5103f190dd7d1b01391546f1c7cb5b2adf5b (patch) | |
tree | a0dfb401cbf5f2f7eff2c76690d25387de709cbd /src | |
parent | 370dd5521a9c218cd687e13eb833aa85a6d32f7c (diff) | |
download | mongo-4f4a5103f190dd7d1b01391546f1c7cb5b2adf5b.tar.gz |
Fix signed/unsigned warning error
Diffstat (limited to 'src')
-rw-r--r-- | src/mongo/db/concurrency/lock_state.cpp | 2 |
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() { |