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/18 17:02:08 UTC

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

Author: mturk
Date: Tue Aug 18 15:02:08 2009
New Revision: 805439

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

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=805439&r1=805438&r2=805439&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 Tue Aug 18 15:02:08 2009
@@ -214,7 +214,7 @@
         if (GetEnvironmentVariableA("ACR_LOG_SYSLOG", event_env, 64) == 0)
             return;
         else
-            domain = &evant_env[0];
+            domain = &event_env[0];
         if (!*domain)
             return;
     }