projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c78b4f1
)
Avoid warnings saying that the format takes a void*.
author
Richard Levitte
<levitte@openssl.org>
Wed, 11 Jun 2003 22:26:02 +0000
(22:26 +0000)
committer
Richard Levitte
<levitte@openssl.org>
Wed, 11 Jun 2003 22:26:02 +0000
(22:26 +0000)
apps/s_cb.c
patch
|
blob
|
history
diff --git
a/apps/s_cb.c
b/apps/s_cb.c
index 1410178d6571fb73b7c3046fc7ded4c4c3e181aa..28f8acc1e30825a984b05a72a94d5b3b61394b04 100644
(file)
--- a/
apps/s_cb.c
+++ b/
apps/s_cb.c
@@
-240,14
+240,14
@@
long MS_CALLBACK bio_dump_cb(BIO *bio, int cmd, const char *argp, int argi,
if (cmd == (BIO_CB_READ|BIO_CB_RETURN))
{
BIO_printf(out,"read from %p [%p] (%d bytes => %ld (0x%lX))\n",
- bio,argp,argi,ret,ret);
+
(void *)
bio,argp,argi,ret,ret);
BIO_dump(out,argp,(int)ret);
return(ret);
}
else if (cmd == (BIO_CB_WRITE|BIO_CB_RETURN))
{
BIO_printf(out,"write to %p [%p] (%d bytes => %ld (0x%lX))\n",
- bio,argp,argi,ret,ret);
+
(void *)
bio,argp,argi,ret,ret);
BIO_dump(out,argp,(int)ret);
}
return(ret);