diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-04-08 11:36:19 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-04-08 11:36:19 (GMT) |
commit | e287e351053621a7372984d40a4612c949bd4513 (patch) | |
tree | 907b6c3d34afba55ba07742b2432058db5f4b73d /unix/tclSelectNotfy.c | |
parent | 0b8bd5406326f887d15a55b9056d03f1b8068b99 (diff) | |
download | tcl-e287e351053621a7372984d40a4612c949bd4513.zip tcl-e287e351053621a7372984d40a4612c949bd4513.tar.gz tcl-e287e351053621a7372984d40a4612c949bd4513.tar.bz2 |
Fix compiler warning when using select notifier
Diffstat (limited to 'unix/tclSelectNotfy.c')
-rw-r--r-- | unix/tclSelectNotfy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tclSelectNotfy.c b/unix/tclSelectNotfy.c index 72567e5..82f2ef7 100644 --- a/unix/tclSelectNotfy.c +++ b/unix/tclSelectNotfy.c @@ -377,7 +377,7 @@ TclpInitNotifier(void) void TclpFinalizeNotifier( - ClientData clientData) + TCL_UNUSED(void *)) { #if TCL_THREADS ThreadSpecificData *tsdPtr = TCL_TSD_INIT(&dataKey); |