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/20 09:56:06 UTC

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

Author: mturk
Date: Thu Aug 20 07:56:05 2009
New Revision: 806077

URL: http://svn.apache.org/viewvc?rev=806077&view=rev
Log:
fix copy/paste typo from ansi version of the API

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

Modified: commons/sandbox/runtime/trunk/src/main/native/os/win32/pshm.c
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/os/win32/pshm.c?rev=806077&r1=806076&r2=806077&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/os/win32/pshm.c (original)
+++ commons/sandbox/runtime/trunk/src/main/native/os/win32/pshm.c Thu Aug 20 07:56:05 2009
@@ -506,7 +506,7 @@
     UNREFERENCED_O;
 
     WITH_WSTR(name) {
-        rc = ACR_ShmRemove(_E, J2S(name));
+        rc = ACR_ShmRemove(_E, J2W(name));
     } END_WITH_WSTR(name);
     return rc;
 }