diff options
author | jcid <devnull@localhost> | 2008-03-18 12:51:52 +0100 |
---|---|---|
committer | jcid <devnull@localhost> | 2008-03-18 12:51:52 +0100 |
commit | 00247d9171c3215ececb71b2a1961878029d8f8b (patch) | |
tree | 243aaeb49e96add679381e436fa099c54517f14f /src | |
parent | 2287bc28d578dd6d3e990fc4c7a01e8045701622 (diff) |
- Re introduced the accidentaly removed "inbuf_t".
Diffstat (limited to 'src')
-rw-r--r-- | src/html.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/html.cc b/src/html.cc index 7519ed49..6338315a 100644 --- a/src/html.cc +++ b/src/html.cc @@ -3844,7 +3844,8 @@ static Dstr *Html_encode_text(iconv_t encoder, Dstr *input) int rc = 0; Dstr *output; const int bufsize = 128; - char *buffer, *inPtr, *outPtr; + inbuf_t *inPtr; + char *buffer, *outPtr; size_t inLeft, outRoom; bool bad_chars = false; |