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:
authorChristopher Faylor <me@cgf.cx>2002-06-10 23:58:21 +0400
committerChristopher Faylor <me@cgf.cx>2002-06-10 23:58:21 +0400
commitb01cbd5de293ab190b64951790887c6705a8188e (patch)
treed758940163a844c045f5eb417cb0f9ce6c159882 /winsup/cygwin/net.cc
parentfe4283af7ad3e47321d9a7b725c343629dc7d90f (diff)
* include/sys/strace.h (strace): Avoid use of constructor.
Diffstat (limited to 'winsup/cygwin/net.cc')
-rw-r--r--winsup/cygwin/net.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/net.cc b/winsup/cygwin/net.cc
index 7c2d2b5ca..32e930392 100644
--- a/winsup/cygwin/net.cc
+++ b/winsup/cygwin/net.cc
@@ -1123,7 +1123,7 @@ cygwin_gethostbyname (const char *name)
tmp_addr[1] = b;
tmp_addr[2] = c;
tmp_addr[3] = d;
- tmp_addr_list[0] = (char *)tmp_addr;
+ tmp_addr_list[0] = (char *) tmp_addr;
tmp.h_name = name;
tmp.h_aliases = tmp_aliases;
tmp.h_addrtype = 2;