summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEliot Horowitz <eliot@10gen.com>2012-07-11 19:12:26 -0400
committerEliot Horowitz <eliot@10gen.com>2012-07-11 19:16:04 -0400
commit8e584c2fe8d29040692d0e44bda695df68e99838 (patch)
treef2ff32ece4ed86867cacf5c98bf1b9eff8a6efbf
parente67589e105d4ed85670e9dd264d0689223d0d324 (diff)
downloadmongo-8e584c2fe8d29040692d0e44bda695df68e99838.tar.gz
SERVER-6414 - windows compile part 5
-rw-r--r--db/extsort.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/extsort.cpp b/db/extsort.cpp
index 1cb59bf4043..1e3230ef70c 100644
--- a/db/extsort.cpp
+++ b/db/extsort.cpp
@@ -251,7 +251,7 @@ namespace mongo {
#if defined(_WIN32)
- static inline int win_read(int fd, const void *data, int count) { return _read(fd, data, count); }
+ static inline int win_read(int fd, void *data, int count) { return _read(fd, data, count); }
#endif