Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2012-06-27 17:35:48 +0400
committerCorinna Vinschen <corinna@vinschen.de>2012-06-27 17:35:48 +0400
commit165f575341ae32bccd30e13fc6b038a5e4ba08af (patch)
treeb8752583fb93e35aff15650dfb484790ff92542b /winsup/cygwin/miscfuncs.cc
parent25f3ea84f8170ef2f5cb4aba11f547723f360760 (diff)
* miscfuncs.cc (WritePipeOverlapped): Define second parameter LPCVOID,
rather than PCVOID. * miscfuncs.h (WritePipeOverlapped): Ditto.
Diffstat (limited to 'winsup/cygwin/miscfuncs.cc')
-rw-r--r--winsup/cygwin/miscfuncs.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/miscfuncs.cc b/winsup/cygwin/miscfuncs.cc
index 4a4cd3ee5..10bf4f7e9 100644
--- a/winsup/cygwin/miscfuncs.cc
+++ b/winsup/cygwin/miscfuncs.cc
@@ -365,7 +365,7 @@ ReadPipeOverlapped (HANDLE h, PVOID buf, DWORD len, LPDWORD ret_len,
}
BOOL WINAPI
-WritePipeOverlapped (HANDLE h, PCVOID buf, DWORD len, LPDWORD ret_len,
+WritePipeOverlapped (HANDLE h, LPCVOID buf, DWORD len, LPDWORD ret_len,
DWORD timeout)
{
OVERLAPPED ov;