提交 47c177c7 编写于 作者: R Richard Levitte

Let's avoid compiler warnings over types.

Actually, this should be resolved by using size_t a bit more, but
that'll be for later.
上级 b755955a
......@@ -82,14 +82,15 @@ int BIO_printf (BIO *bio, ...)
va_list args;
char *format;
int ret;
size_t retlen;
MS_STATIC char hugebuf[1024*2]; /* 10k in one chunk is the limit */
va_start(args, bio);
format=va_arg(args, char *);
hugebuf[0]='\0';
dopr(hugebuf, sizeof(hugebuf), &ret, format, args);
ret=BIO_write(bio, hugebuf, ret);
dopr(hugebuf, sizeof(hugebuf), &retlen, format, args);
ret=BIO_write(bio, hugebuf, (int)retlen);
va_end(args);
return(ret);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册