summaryrefslogtreecommitdiff
path: root/util/mmap_posix.cpp
diff options
context:
space:
mode:
authorEliot Horowitz <eliot@10gen.com>2009-10-16 11:39:59 -0400
committerEliot Horowitz <eliot@10gen.com>2009-10-16 11:39:59 -0400
commite48db1f60ad4a04ea01d80a3b8129819913b30d2 (patch)
treebb89ced0837733ffb7c179d08aae004dac1cf371 /util/mmap_posix.cpp
parent411b4d279ee726c141b44a8cf75a7bb2e602be03 (diff)
downloadmongo-e48db1f60ad4a04ea01d80a3b8129819913b30d2.tar.gz
replace cerr with cout for all server files
Diffstat (limited to 'util/mmap_posix.cpp')
-rw-r--r--util/mmap_posix.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/mmap_posix.cpp b/util/mmap_posix.cpp
index 78d5017e836..f5dbc16cc37 100644
--- a/util/mmap_posix.cpp
+++ b/util/mmap_posix.cpp
@@ -63,8 +63,8 @@ namespace mongo {
off_t filelen = lseek(fd, 0, SEEK_END);
if ( filelen != length ){
- cerr << "wanted length: " << length << " filelen: " << filelen << endl;
- cerr << sizeof(size_t) << endl;
+ cout << "wanted length: " << length << " filelen: " << filelen << endl;
+ cout << sizeof(size_t) << endl;
massert( "file size allocation failed", filelen == length );
}
lseek( fd, 0, SEEK_SET );