summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/data_file.cpp
diff options
context:
space:
mode:
authorEliot Horowitz <eliot@10gen.com>2013-08-01 09:29:52 -0400
committerEliot Horowitz <eliot@10gen.com>2013-08-01 17:16:35 -0400
commit56c359263b56f640c8b1ad1b2e87d7e6c3e655cf (patch)
tree42435927dafe6f03b7739bc18e5252048cb22d57 /src/mongo/db/storage/data_file.cpp
parent1b371f53ffbfd06329f7f4bbfc3171ab0c988a30 (diff)
downloadmongo-56c359263b56f640c8b1ad1b2e87d7e6c3e655cf.tar.gz
SERVER-6405: fix some spacing
Diffstat (limited to 'src/mongo/db/storage/data_file.cpp')
-rw-r--r--src/mongo/db/storage/data_file.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mongo/db/storage/data_file.cpp b/src/mongo/db/storage/data_file.cpp
index 169acc11d36..4b240297107 100644
--- a/src/mongo/db/storage/data_file.cpp
+++ b/src/mongo/db/storage/data_file.cpp
@@ -31,11 +31,11 @@
namespace mongo {
- static void data_file_check(void *_mb) {
+ static void data_file_check(void *_mb) {
if( sizeof(char *) == 4 )
- uassert( 10084 , "can't map file memory - mongo requires 64 bit build for larger datasets", _mb != 0);
+ uassert( 10084, "can't map file memory - mongo requires 64 bit build for larger datasets", _mb != 0);
else
- uassert( 10085 , "can't map file memory", _mb != 0);
+ uassert( 10085, "can't map file memory", _mb != 0);
}
int DataFile::maxSize() {