summaryrefslogtreecommitdiffstats
path: root/generic/tclPanic.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2019-08-02 12:15:23 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2019-08-02 12:15:23 (GMT)
commit6a8628c8af8dc575b5564b03945c6a6a470d18aa (patch)
treebd8e84a71e7799de0d39a19caa754821d7da2926 /generic/tclPanic.c
parent6a4aafe17fbc322b30ef749f7321a6ae959dc396 (diff)
parentb60138caf29e1967d7a47bec6c2ae4c20e3e655e (diff)
downloadtcl-6a8628c8af8dc575b5564b03945c6a6a470d18aa.zip
tcl-6a8628c8af8dc575b5564b03945c6a6a470d18aa.tar.gz
tcl-6a8628c8af8dc575b5564b03945c6a6a470d18aa.tar.bz2
Merge 8.7. Continue implementation for win32
Diffstat (limited to 'generic/tclPanic.c')
-rw-r--r--generic/tclPanic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclPanic.c b/generic/tclPanic.c
index e8c1e7f..1096ead 100644
--- a/generic/tclPanic.c
+++ b/generic/tclPanic.c
@@ -51,7 +51,7 @@ Tcl_SetPanicProc(
{
#if defined(_WIN32)
/* tclWinDebugPanic only installs if there is no panicProc yet. */
- if ((proc != tclWinDebugPanic) || (panicProc == NULL))
+ if (((Tcl_PanicProc *)proc != tclWinDebugPanic) || (panicProc == NULL))
#elif defined(__CYGWIN__)
if (proc == NULL)
panicProc = tclWinDebugPanic;