summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>2006-04-12 19:24:45 +0000
committerUlf Möller <ulf@openssl.org>2006-04-12 19:24:45 +0000
commitfb05e1cdf6263a0a429ccb095902ae786a54f56d (patch)
treec9ef275e4797a16d5d494b5c1b927fa490f6368a /apps
parentceb46789563c251cc8e682e1a95cb180fdd50cb0 (diff)
declare as in prototype
Submitted by: Gisle Vanem
Diffstat (limited to 'apps')
-rw-r--r--apps/apps.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/apps.c b/apps/apps.c
index 365287f488..c4a7f12e73 100644
--- a/apps/apps.c
+++ b/apps/apps.c
@@ -2673,7 +2673,7 @@ int raw_read_stdin(void *buf,int siz)
#endif
#if defined(_WIN32) && defined(STD_OUTPUT_HANDLE)
-int raw_write_stdout(void *buf,int siz)
+int raw_write_stdout(const void *buf,int siz)
{
DWORD n;
if (WriteFile(GetStdHandle(STD_OUTPUT_HANDLE),buf,siz,&n,NULL))