diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/charConv.c | 2 | ||||
-rw-r--r-- | src/charConv.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/charConv.c b/src/charConv.c index 52c14987b..354a8aba7 100644 --- a/src/charConv.c +++ b/src/charConv.c @@ -83,7 +83,7 @@ int setCharSetConversion(char * to, char * from) { return -1; } -char * convStrDup(ICONV_CONST char * string) { +char * convStrDup(char * string) { if(!char_conv_to) return NULL; if(char_conv_same) return strdup(string); diff --git a/src/charConv.h b/src/charConv.h index 3093fcac2..5687c1e7e 100644 --- a/src/charConv.h +++ b/src/charConv.h @@ -23,7 +23,7 @@ int setCharSetConversion(char * to, char * from); -char * convStrDup(ICONV_CONST char * string); +char * convStrDup(char * string); void closeCharSetConversion(); |