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 16:29:05 UTC

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

Author: mturk
Date: Wed Sep  2 14:29:04 2009
New Revision: 810519

URL: http://svn.apache.org/viewvc?rev=810519&view=rev
Log:
Fix same typo (again)

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=810519&r1=810518&r2=810519&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 14:29:04 2009
@@ -370,7 +370,7 @@
         }
         else {
             ACR_RING_INIT(&tlsd->data_ring, acr_tlsd_data_t, link);
-            TlsSetValue(dll_tls_index, *tlsd);
+            TlsSetValue(dll_tls_index, tlsd);
         }
     }
     for (node  = ACR_RING_FIRST(&(tlsd->data_ring));