[svn:parrot] r36706 - branches/update_pod/src/io
jkeenan at svn.parrot.org
jkeenan at svn.parrot.org
Sat Feb 14 00:43:07 UTC 2009
Author: jkeenan
Date: Sat Feb 14 00:43:06 2009
New Revision: 36706
URL: https://trac.parrot.org/parrot/changeset/36706
Log:
Correct C parentheses error (already fixed in trunk).
Modified:
branches/update_pod/src/io/win32.c
Modified: branches/update_pod/src/io/win32.c
==============================================================================
--- branches/update_pod/src/io/win32.c Sat Feb 14 00:42:19 2009 (r36705)
+++ branches/update_pod/src/io/win32.c Sat Feb 14 00:43:06 2009 (r36706)
@@ -305,7 +305,7 @@
PIOHANDLE os_handle = Parrot_io_get_os_handle(interp, filehandle);
if (os_handle != INVALID_HANDLE_VALUE) {
if (CloseHandle(os_handle) == 0)
- result = GetLastError ();
+ result = GetLastError();
Parrot_io_set_os_handle(interp, filehandle, INVALID_HANDLE_VALUE);
}
return 0;
More information about the parrot-commits
mailing list