Skip to content

Commit

Permalink
- YOU WILL NEED TO UPDATE YOUR OMDEV FOR THIS!
Browse files Browse the repository at this point in the history
- fix iconv.h header and systemimpl.c
- do not copy the libiconv-2.dll as we now link with the static one.


git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@10657 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
adrpo committed Dec 6, 2011
1 parent 82db98b commit 3c991ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Compiler/runtime/systemimpl.c
Expand Up @@ -1594,7 +1594,7 @@ extern char* SystemImpl__iconv(const char * str, const char *from, const char *t
in_str = (char*) str;
out_sz = buflen-1;
res = buf;
count = iconv(ic,(const char**)&in_str,&sz,&res,&out_sz);
count = iconv(ic,&in_str,&sz,&res,&out_sz);
iconv_close(ic);
if (count == -1) {
const char *tokens[4] = {strerror(errno),from,to,str};
Expand Down

0 comments on commit 3c991ba

Please sign in to comment.