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/14 07:31:16 UTC

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

Author: mturk
Date: Fri Aug 14 05:31:16 2009
New Revision: 804081

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

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

Modified: commons/sandbox/runtime/trunk/src/main/native/os/win32/pmutex.c
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/os/win32/pmutex.c?rev=804081&r1=804080&r2=804081&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/os/win32/pmutex.c (original)
+++ commons/sandbox/runtime/trunk/src/main/native/os/win32/pmutex.c Fri Aug 14 05:31:16 2009
@@ -54,9 +54,9 @@
     }
     /* Mark the mutex as non inheritable
      */
-    sa.nLength = sizeof(SECURITY_ATTRINUTES);
+    sa.nLength = sizeof(SECURITY_ATTRIBUTES);
     sa.lpSecurityDescriptor = NULL;
-    sa.bInheritHandle = FALSE:
+    sa.bInheritHandle = FALSE;
 
     m = CreateMutexW(&sa, FALSE, reskey);
     if (!m)