You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mt...@apache.org on 2009/08/31 15:26:12 UTC

svn commit: r809577 - /commons/sandbox/runtime/trunk/src/main/native/os/win32/pmmap.c

Author: mturk
Date: Mon Aug 31 13:26:12 2009
New Revision: 809577

URL: http://svn.apache.org/viewvc?rev=809577&view=rev
Log:
Fix typo

Modified:
    commons/sandbox/runtime/trunk/src/main/native/os/win32/pmmap.c

Modified: commons/sandbox/runtime/trunk/src/main/native/os/win32/pmmap.c
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/os/win32/pmmap.c?rev=809577&r1=809576&r2=809577&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/os/win32/pmmap.c (original)
+++ commons/sandbox/runtime/trunk/src/main/native/os/win32/pmmap.c Mon Aug 31 13:26:12 2009
@@ -145,7 +145,7 @@
         else
             map->flags = PAGE_READWRITE;
     }
-    map->mh = CreateFileMappingW(map->fh, NULL, map->flags, 0, 0, NULL);
+    map->mh = CreateFileMappingW(map->fd, NULL, map->flags, 0, 0, NULL);
     if (IS_INVALID_HANDLE(map->mh)) {
         rc = ACR_GET_OS_ERROR();
         free(map);