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/10/01 20:49:30 UTC

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

Author: mturk
Date: Thu Oct  1 18:49:30 2009
New Revision: 820749

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

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

Modified: commons/sandbox/runtime/trunk/src/main/native/os/win32/fsysio.c
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/os/win32/fsysio.c?rev=820749&r1=820748&r2=820749&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/os/win32/fsysio.c (original)
+++ commons/sandbox/runtime/trunk/src/main/native/os/win32/fsysio.c Thu Oct  1 18:49:30 2009
@@ -345,7 +345,7 @@
             flags |= ACR_FOPEN_WRITE | ACR_STDOUT_FLAG;
         break;
         case 2:
-            fd = GetStdHandle(STD_ERRROR_HANDLE);
+            fd = GetStdHandle(STD_ERROR_HANDLE);
             flags |= ACR_FOPEN_WRITE | ACR_STDERR_FLAG;
         break;
         default:
@@ -353,7 +353,7 @@
         break;
     }
     if (fd == INVALID_HANDLE_VALUE) {
-        ACR_THROW_IO_IF_ERRNO();
+        ACR_THROW_IO_ERRNO();
         return NULL;
     }
     if (fd == NULL) {