Skip to content
Snippets Groups Projects
Commit 86a45a8c authored by Alberto Massari's avatar Alberto Massari
Browse files

Fixed syntax error in test program

git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@801343 13f79535-47bb-0310-9956-ffa450edef68
parent 1416b1dd
No related branches found
No related tags found
No related merge requests found
......@@ -185,10 +185,10 @@ AC_COMPILE_IFELSE( [AC_LANG_PROGRAM([[#include <iconv.h>]],
[[
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])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment