summaryrefslogtreecommitdiffstats
path: root/generic/tclStubInit.c
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2020-03-09 12:31:47 (GMT)
committerdgp <dgp@users.sourceforge.net>2020-03-09 12:31:47 (GMT)
commit42e6e9b167278c19dd2d9039fc434558bfc2c7f1 (patch)
treebbf7612ecc10930689dbca46355943bf6a82e751 /generic/tclStubInit.c
parent085094bd8714e2c46e3f098189728bb966eb3fb0 (diff)
downloadtcl-42e6e9b167278c19dd2d9039fc434558bfc2c7f1.zip
tcl-42e6e9b167278c19dd2d9039fc434558bfc2c7f1.tar.gz
tcl-42e6e9b167278c19dd2d9039fc434558bfc2c7f1.tar.bz2
More TCL_UNUSED
Diffstat (limited to 'generic/tclStubInit.c')
-rw-r--r--generic/tclStubInit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclStubInit.c b/generic/tclStubInit.c
index 784d165..fbbac6d 100644
--- a/generic/tclStubInit.c
+++ b/generic/tclStubInit.c
@@ -270,9 +270,9 @@ mp_err TclBN_mp_div_3(const mp_int *a, mp_int *c, unsigned int *d) {
return result;
}
-int TclBN_mp_expt_d_ex(const mp_int *a, unsigned int b, mp_int *c, int fast)
+int TclBN_mp_expt_d_ex(const mp_int *a, unsigned int b, mp_int *c,
+ TCL_UNUSED(int) /*fast*/)
{
- (void)fast;
return TclBN_mp_expt_u32(a, b, c);
}