diff options
author | Alexey Shchepin <alexey@process-one.net> | 2004-10-12 20:06:38 +0000 |
---|---|---|
committer | Alexey Shchepin <alexey@process-one.net> | 2004-10-12 20:06:38 +0000 |
commit | 476a36cd584de6bdda5bd4dab4fb77e7dc681b11 (patch) | |
tree | 69d1c350bb415b9431f5114e42d1b76bf709a1c7 /src/mod_irc | |
parent | * src/tls/Makefile.win32: Added (thanks to Sergei Golovan) (diff) |
* src/win32/: Updated (thanks to Sergei Golovan)
* src/msgs/es.msg: Updated (thanks to Badlop)
* src/mod_irc/iconv_erl.c: Bugfix (thanks to Jacek Konieczny)
SVN Revision: 282
Diffstat (limited to 'src/mod_irc')
-rw-r--r-- | src/mod_irc/iconv_erl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mod_irc/iconv_erl.c b/src/mod_irc/iconv_erl.c index 5e986c016..85b898bb3 100644 --- a/src/mod_irc/iconv_erl.c +++ b/src/mod_irc/iconv_erl.c @@ -37,7 +37,7 @@ static int iconv_erl_control(ErlDrvData drv_data, int size; int index = 0; int avail; - int inleft, outleft; + size_t inleft, outleft; ErlDrvBinary *b; char *from, *to, *string, *stmp, *rstring, *rtmp; iconv_t cd; |