summaryrefslogtreecommitdiffstats
path: root/win/tclWinNotify.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2021-08-23 13:00:47 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2021-08-23 13:00:47 (GMT)
commita5048e8dd92669687e9e6a3e5e040477366a5b69 (patch)
tree14fc254a3b62a1b608d07608c6b3aab3fe073d5a /win/tclWinNotify.c
parent94b338844e5af1659858a5446714c65fcbaecf54 (diff)
parenta5448b6c8bdb4aeac833b411b94637047889cbd8 (diff)
downloadtcl-a5048e8dd92669687e9e6a3e5e040477366a5b69.zip
tcl-a5048e8dd92669687e9e6a3e5e040477366a5b69.tar.gz
tcl-a5048e8dd92669687e9e6a3e5e040477366a5b69.tar.bz2
Make everything compile warning-free when TCL_THREADS=0
Diffstat (limited to 'win/tclWinNotify.c')
-rw-r--r--win/tclWinNotify.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/win/tclWinNotify.c b/win/tclWinNotify.c
index f951acf..fd39428 100644
--- a/win/tclWinNotify.c
+++ b/win/tclWinNotify.c
@@ -367,11 +367,11 @@ TclpServiceModeHook(
int
TclAsyncNotifier(
- int sigNumber, /* Signal number. */
- Tcl_ThreadId threadId, /* Target thread. */
- ClientData clientData, /* Notifier data. */
- int *flagPtr, /* Flag to mark. */
- int value) /* Value of mark. */
+ TCL_UNUSED(int), /* Signal number. */
+ TCL_UNUSED(Tcl_ThreadId), /* Target thread. */
+ TCL_UNUSED(void *), /* Notifier data. */
+ TCL_UNUSED(int *), /* Flag to mark. */
+ TCL_UNUSED(int)) /* Value of mark. */
{
return 0;
}