summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEliot Horowitz <eliot@10gen.com>2012-07-11 18:31:14 -0400
committerEliot Horowitz <eliot@10gen.com>2012-07-11 18:31:38 -0400
commitc6a40c4423762f742bc5f643b169b1bbc612ee3b (patch)
treee1b8a7da619b70b40a1444152b1ff8e43a898048
parentea06d5d59af1b41f2f9d40a74dc77ea98aa4ecd2 (diff)
downloadmongo-c6a40c4423762f742bc5f643b169b1bbc612ee3b.tar.gz
SERVER-6414 - windows compile part 3
-rw-r--r--db/extsort.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/extsort.cpp b/db/extsort.cpp
index bd04d40ba65..ec91bb749e4 100644
--- a/db/extsort.cpp
+++ b/db/extsort.cpp
@@ -254,7 +254,7 @@ namespace mongo {
long long total = 0;
while ( total < count ) {
#ifdef _WIN32
- long long now = _read( _file, buf, count );
+ long long now = ::_read( _file, buf, count );
#else
long long now = ::read( _file, buf, count );
#endif