From 1d4aa0a204c3317ccb81f47380923352ba4a6a6d Mon Sep 17 00:00:00 2001 From: Dwight Date: Wed, 21 Oct 2009 16:12:48 -0400 Subject: compile --- db/dbcommands.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'db/dbcommands.cpp') diff --git a/db/dbcommands.cpp b/db/dbcommands.cpp index 2068400339d..530b5475be8 100644 --- a/db/dbcommands.cpp +++ b/db/dbcommands.cpp @@ -566,9 +566,9 @@ namespace mongo { assert( removeBit(2, 1) == 0 ); assert( removeBit(255, 1) == 127 ); assert( removeBit(21, 2) == 9 ); - assert( removeBit(0x8000000000000000, 63) == 0 ); - assert( removeBit(0x8000000000000001, 63) == 1 ); - assert( removeBit(0x8000000000000001, 0) == 0x4000000000000000 ); + assert( removeBit(0x8000000000000000LL, 63) == 0 ); + assert( removeBit(0x8000000000000001LL, 63) == 1 ); + assert( removeBit(0x8000000000000001LL, 0) == 0x4000000000000000LL ); } } dbc_unittest; -- cgit v1.2.1