On May 17, 2006, at 6:45 PM, Martin Preuss wrote:

Hi,

On Wednesday 17 May 2006 23:31, David Reiser wrote:
[...]
app.cpp: In function 'int App__convertFromUtf8(const char*, int,
GWEN_BUFFER*)':
app.cpp:2697: error: invalid conversion from 'char**' to 'const char**'
app.cpp:2697: error:   initializing argument 2 of 'size_t libiconv
(void*, const char**, size_t*, char**, size_t*)'
[...]

Hmm, your version of iconv() seems to expect a const char** as argument 2, whereas "man 3 iconv" shows that a char** should be used (and that's what we
use when calling that function)...

You might get away with changing line 2680 of that file:
from: char *pInbuf;
to: const char *pInbuf;

That works (at least the compile part).

And your explanation reminded me I've seen this before:
http://sourceforge.net/mailarchive/message.php?msg_id=14661293

Thanks again for the help.



Regards
Martin


Dave
--
David Reiser
[EMAIL PROTECTED]



-------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Aqbanking-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/aqbanking-devel

Reply via email to