Skip to content

Commit cd76131

Browse files
committed
SERVER-6414 - windows compile part 3
1 parent 0f29045 commit cd76131

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mongo/db/extsort.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ namespace mongo {
290290
long long total = 0;
291291
while ( total < count ) {
292292
#ifdef _WIN32
293-
long long now = _read( _file, buf, count );
293+
long long now = ::_read( _file, buf, count );
294294
#else
295295
long long now = ::read( _file, buf, count );
296296
#endif

0 commit comments

Comments
 (0)