diff options
author | max <max@tclers.tk> | 2013-11-18 13:32:30 (GMT) |
---|---|---|
committer | max <max@tclers.tk> | 2013-11-18 13:32:30 (GMT) |
commit | 9b104b7167d18325a28a7e1c3891ce8513249e23 (patch) | |
tree | c561fb12851610556220bebcb1839b9d616d4e41 /generic/tclInt.h | |
parent | 643e5bc24ed7dd6a21ca1a562693d0d9ce4f2651 (diff) | |
download | tcl-9b104b7167d18325a28a7e1c3891ce8513249e23.zip tcl-9b104b7167d18325a28a7e1c3891ce8513249e23.tar.gz tcl-9b104b7167d18325a28a7e1c3891ce8513249e23.tar.bz2 |
Revert [3c0b0bbda6]. If this really is a problem, it needs to get fixed by other means than covering behind void pointers.
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index feea6dd..5c8dbfd 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -3001,8 +3001,9 @@ MODULE_SCOPE void TclpFinalizeMutex(Tcl_Mutex *mutexPtr); MODULE_SCOPE void TclpFinalizePipes(void); MODULE_SCOPE void TclpFinalizeSockets(void); MODULE_SCOPE int TclCreateSocketAddress(Tcl_Interp *interp, - void **addrlist, const char *host, int port, - int willBind, const char **errorMsgPtr); + struct addrinfo **addrlist, + const char *host, int port, int willBind, + const char **errorMsgPtr); MODULE_SCOPE int TclpThreadCreate(Tcl_ThreadId *idPtr, Tcl_ThreadCreateProc *proc, ClientData clientData, int stackSize, int flags); |