You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by hi...@apache.org on 2008/09/04 10:31:54 UTC

svn commit: r691931 - /harmony/enhanced/classlib/trunk/modules/portlib/src/main/native/port/unix/hysl.c

Author: hindessm
Date: Thu Sep  4 01:31:53 2008
New Revision: 691931

URL: http://svn.apache.org/viewvc?rev=691931&view=rev
Log:
Fix to keep iconv case consistent with change made in r691916
for HARMONY-5967.

Modified:
    harmony/enhanced/classlib/trunk/modules/portlib/src/main/native/port/unix/hysl.c

Modified: harmony/enhanced/classlib/trunk/modules/portlib/src/main/native/port/unix/hysl.c
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/portlib/src/main/native/port/unix/hysl.c?rev=691931&r1=691930&r2=691931&view=diff
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/portlib/src/main/native/port/unix/hysl.c (original)
+++ harmony/enhanced/classlib/trunk/modules/portlib/src/main/native/port/unix/hysl.c Thu Sep  4 01:31:53 2008
@@ -64,7 +64,8 @@
 #endif /* HYVM_USE_MBTOWC */
 
 #if (defined(HYVM_USE_ICONV))
-static void convertWithIConv (struct HyPortLibrary *portLibrary, char *error,
+static void convertWithIConv (struct HyPortLibrary *portLibrary,
+                              const char *error,
                               char *errBuf, UDATA bufLen);
 #endif /* HYVM_USE_ICONV */
 
@@ -246,7 +247,7 @@
 #define CDEV_CURRENT_FUNCTION convertWithIConv
 #if (defined(HYVM_USE_ICONV))
 static void
-convertWithIConv (struct HyPortLibrary *portLibrary, char *error,
+convertWithIConv (struct HyPortLibrary *portLibrary, const char *error,
                   char *errBuf, UDATA bufLen)
 {
   iconv_t converter;