summaryrefslogtreecommitdiffstats
path: root/unix/tclSelectNotfy.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2022-09-02 07:42:51 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2022-09-02 07:42:51 (GMT)
commite03ac7f9c6599697608bb897f3bdbc2e47cf0883 (patch)
tree89b85c13b1c0d1a2c0e366451153540605905dfc /unix/tclSelectNotfy.c
parentdc58da9c4546fae811081efb2288977bb545d946 (diff)
downloadtcl-e03ac7f9c6599697608bb897f3bdbc2e47cf0883.zip
tcl-e03ac7f9c6599697608bb897f3bdbc2e47cf0883.tar.gz
tcl-e03ac7f9c6599697608bb897f3bdbc2e47cf0883.tar.bz2
Some more (internal) ClientData -> void * changes
Diffstat (limited to 'unix/tclSelectNotfy.c')
-rw-r--r--unix/tclSelectNotfy.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclSelectNotfy.c b/unix/tclSelectNotfy.c
index e7a53bf..862a0e3 100644
--- a/unix/tclSelectNotfy.c
+++ b/unix/tclSelectNotfy.c
@@ -921,7 +921,7 @@ int
TclAsyncNotifier(
int sigNumber, /* Signal number. */
TCL_UNUSED(Tcl_ThreadId), /* Target thread. */
- TCL_UNUSED(ClientData), /* Notifier data. */
+ TCL_UNUSED(void *), /* Notifier data. */
int *flagPtr, /* Flag to mark. */
int value) /* Value of mark. */
{
@@ -986,7 +986,7 @@ TclAsyncNotifier(
#if TCL_THREADS
static TCL_NORETURN void
NotifierThreadProc(
- TCL_UNUSED(ClientData))
+ TCL_UNUSED(void *))
{
ThreadSpecificData *tsdPtr;
fd_set readableMask;