summaryrefslogtreecommitdiffstats
path: root/unix/tclLoadDyld.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2019-09-03 20:32:33 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2019-09-03 20:32:33 (GMT)
commit8c60b1157a27a535111861c5a83b64d502ec1948 (patch)
tree8388b53b8610267c8b8a1755286e96878c170cd3 /unix/tclLoadDyld.c
parent97cf6a1affd8abe431bad7a2c560b434aa953354 (diff)
downloadtcl-8c60b1157a27a535111861c5a83b64d502ec1948.zip
tcl-8c60b1157a27a535111861c5a83b64d502ec1948.tar.gz
tcl-8c60b1157a27a535111861c5a83b64d502ec1948.tar.bz2
Mark more unused parameters
Diffstat (limited to 'unix/tclLoadDyld.c')
-rw-r--r--unix/tclLoadDyld.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/unix/tclLoadDyld.c b/unix/tclLoadDyld.c
index 14e05b2..9d4e99c 100644
--- a/unix/tclLoadDyld.c
+++ b/unix/tclLoadDyld.c
@@ -491,6 +491,9 @@ TclGuessPackageName(
Tcl_DString *bufPtr) /* Initialized empty dstring. Append package
* name to this if possible. */
{
+ (void)fileName;
+ (void)bufPtr;
+
return 0;
}
@@ -513,10 +516,11 @@ TclGuessPackageName(
#ifdef TCL_LOAD_FROM_MEMORY
MODULE_SCOPE void *
TclpLoadMemoryGetBuffer(
- Tcl_Interp *interp, /* Used for error reporting. */
+ Tcl_Interp *dummy, /* Used for error reporting. */
int size) /* Size of desired buffer. */
{
void *buffer = NULL;
+ (void)dummy;
/*
* NSCreateObjectFileImageFromMemory is available but always fails