diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-10-21 08:53:46 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-10-21 08:53:46 (GMT) |
| commit | 106d95266d9d11d75d65b2b7e448a011f5575090 (patch) | |
| tree | 557f975cb65286378c75a189cafbc83502e70f6b /generic/tclMain.c | |
| parent | 3405e90b0428cfcfd998772217086daa6865b009 (diff) | |
| parent | 31489aa2fa4710e28b83cd902fbafcfa0792e033 (diff) | |
| download | tcl-106d95266d9d11d75d65b2b7e448a011f5575090.zip tcl-106d95266d9d11d75d65b2b7e448a011f5575090.tar.gz tcl-106d95266d9d11d75d65b2b7e448a011f5575090.tar.bz2 | |
Merge 8.7
Diffstat (limited to 'generic/tclMain.c')
| -rw-r--r-- | generic/tclMain.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/generic/tclMain.c b/generic/tclMain.c index 7bc9516..41278da 100644 --- a/generic/tclMain.c +++ b/generic/tclMain.c @@ -110,8 +110,8 @@ typedef struct { MODULE_SCOPE Tcl_MainLoopProc *TclGetMainLoop(void); static void Prompt(Tcl_Interp *interp, InteractiveState *isPtr); -static void StdinProc(ClientData clientData, int mask); -static void FreeMainInterp(ClientData clientData); +static void StdinProc(void *clientData, int mask); +static void FreeMainInterp(void *clientData); #if !defined(_WIN32) || defined(UNICODE) && !defined(TCL_ASCII_MAIN) static Tcl_ThreadDataKey dataKey; @@ -736,7 +736,7 @@ TclFullFinalizationRequested(void) static void StdinProc( - ClientData clientData, /* The state of interactive cmd line */ + void *clientData, /* The state of interactive cmd line */ TCL_UNUSED(int) /*mask*/) { int code; @@ -912,7 +912,7 @@ Prompt( static void FreeMainInterp( - ClientData clientData) + void *clientData) { Tcl_Interp *interp = (Tcl_Interp *)clientData; |
