diff options
author | davygrvy <davygrvy@noemail.net> | 2003-12-24 04:18:17 (GMT) |
---|---|---|
committer | davygrvy <davygrvy@noemail.net> | 2003-12-24 04:18:17 (GMT) |
commit | ab17eb9562a2b91718470716510884e1c0edfbbc (patch) | |
tree | eff546c6e792fecd4310f81379419c1d68d63c28 /win/tclWinSock.c | |
parent | c1f7aa10c0c63abe68c8a682c909b106fb843615 (diff) | |
download | tcl-ab17eb9562a2b91718470716510884e1c0edfbbc.zip tcl-ab17eb9562a2b91718470716510884e1c0edfbbc.tar.gz tcl-ab17eb9562a2b91718470716510884e1c0edfbbc.tar.bz2 |
All uses of 'panic' (the macro) changed
to 'Tcl_Panic' (the function). The #define
of panic in tcl.h clearly states it is
deprecated in the comments.
[Patch 865264]
FossilOrigin-Name: 524a53e3b36111f085cdb216a27da061773239ae
Diffstat (limited to 'win/tclWinSock.c')
-rw-r--r-- | win/tclWinSock.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tclWinSock.c b/win/tclWinSock.c index 91236cb..a790b31 100644 --- a/win/tclWinSock.c +++ b/win/tclWinSock.c @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclWinSock.c,v 1.40 2003/12/12 00:59:09 davygrvy Exp $ + * RCS: @(#) $Id: tclWinSock.c,v 1.41 2003/12/24 04:18:23 davygrvy Exp $ */ #include "tclWinInt.h" @@ -2726,7 +2726,7 @@ TclpCutSockChannel(chan) */ if (!removed) { - panic("file info ptr not on thread channel list"); + Tcl_Panic("file info ptr not on thread channel list"); } /* |