diff options
author | jcid <devnull@localhost> | 2008-03-14 19:04:18 +0100 |
---|---|---|
committer | jcid <devnull@localhost> | 2008-03-14 19:04:18 +0100 |
commit | 37daa9291e959f4bebffc3d534f2c0ac38819e58 (patch) | |
tree | 55f363967525c406ecc94d7011a07d1f4bfeb33b /src/decode.c | |
parent | f6fab73d9f4f53fa1326fac45a344db1d4390e6a (diff) |
- Added suport for old iconv() (const char** as 2nd arg).
Diffstat (limited to 'src/decode.c')
-rw-r--r-- | src/decode.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/decode.c b/src/decode.c index 94d3ba3f..1bc54372 100644 --- a/src/decode.c +++ b/src/decode.c @@ -143,7 +143,8 @@ static Dstr *Decode_charset(Decode *dc, Dstr *input) int rc = 0; Dstr *output; - char *inPtr, *outPtr; + inbuf_t *inPtr; + char *outPtr; size_t inLeft, outRoom; output = dStr_new(""); |