Author: amassari
Date: Wed Aug 5 18:02:31 2009
New Revision: 801343
URL: http://svn.apache.org/viewvc?rev=801343&view=rev
Log:
Fixed syntax error in test program
Modified:
xerces/c/trunk/configure.ac
Modified: xerces/c/trunk/configure.ac
URL:
http://svn.apache.org/viewvc/xerces/c/trunk/configure.ac?rev=801343&r1=801342&r2=801343&view=diff
==============================================================================
--- xerces/c/trunk/configure.ac (original)
+++ xerces/c/trunk/configure.ac Wed Aug 5 18:02:31 2009
@@ -185,10 +185,10 @@
[[
const char *fromPtr=0;
size_t fromLen=0;
- const char *toPtr=0;
+ char *toPtr=0;
size_t toLen=0;
iconv_t cv=0;
- iconv(cv, &tmpPtr, &fromLen, &toPtr,
&toLen);
+ iconv(cv, &fromPtr, &fromLen, &toPtr,
&toLen);
]])],
[
AC_MSG_RESULT([yes])
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]