From: Christopher Faylor Date: Mon, 10 Jun 2002 19:58:21 +0000 (+0000) Subject: * include/sys/strace.h (strace): Avoid use of constructor. X-Git-Tag: w32api-1_5~34 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=b01cbd5de293ab190b64951790887c6705a8188e;p=newlib-cygwin.git * include/sys/strace.h (strace): Avoid use of constructor. --- diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index b6cc5485d..2e3649f79 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,7 @@ +2002-06-10 Christopher Faylor + + * include/sys/strace.h (strace): Avoid use of constructor. + 2002-06-10 Christopher Faylor * dcrt0.cc (dll_crt0_1): Initialize wincap and check for sanity before diff --git a/winsup/cygwin/include/netdb.h b/winsup/cygwin/include/netdb.h index f49a94379..ead90b515 100644 --- a/winsup/cygwin/include/netdb.h +++ b/winsup/cygwin/include/netdb.h @@ -71,7 +71,7 @@ extern "C" { /* Different from the linux versions - note the shorts.. */ struct hostent { - const char *h_name; /* official name of host */ + char *h_name; /* official name of host */ char **h_aliases; /* alias list */ short h_addrtype; /* host address type */ short h_length; /* length of address */ diff --git a/winsup/cygwin/include/sys/strace.h b/winsup/cygwin/include/sys/strace.h index 955d77a1e..b43ab886f 100644 --- a/winsup/cygwin/include/sys/strace.h +++ b/winsup/cygwin/include/sys/strace.h @@ -44,7 +44,6 @@ public: int lmicrosec; int execing; int inited; - strace() : version(1) {} void hello (); void prntf (unsigned, const char *func, const char *, ...) /*__attribute__ ((regparm(3)))*/; void vprntf (unsigned, const char *func, const char *, va_list ap) /*__attribute__ ((regparm(3)))*/; 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;