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/09/02 14:54:16 UTC

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

Author: mturk
Date: Wed Sep  2 12:54:16 2009
New Revision: 810491

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

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

Modified: commons/sandbox/runtime/trunk/src/main/native/os/win32/main.c
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/os/win32/main.c?rev=810491&r1=810490&r2=810491&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/os/win32/main.c (original)
+++ commons/sandbox/runtime/trunk/src/main/native/os/win32/main.c Wed Sep  2 12:54:16 2009
@@ -341,7 +341,7 @@
             return &_null_tlsd;
         }
         else {
-            TlsSetValue(dll_tls_index, *tlsd);
+            TlsSetValue(dll_tls_index, tlsd);
             return tlsd;
         }
     }