summaryrefslogtreecommitdiffstats
path: root/unix/dltest/pkga.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2020-10-06 13:26:07 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2020-10-06 13:26:07 (GMT)
commit17b3cb873919153d931ec2d08282f3853227d5d4 (patch)
treed5ba1f84849fe52c870e05ee3645be2e7f585277 /unix/dltest/pkga.c
parent4dfeb77d2e51ad5d4356797bfe9a6622f76304fc (diff)
downloadtcl-17b3cb873919153d931ec2d08282f3853227d5d4.zip
tcl-17b3cb873919153d931ec2d08282f3853227d5d4.tar.gz
tcl-17b3cb873919153d931ec2d08282f3853227d5d4.tar.bz2
Fix (possible) gcc warnings in unix/dltest/*.c
Diffstat (limited to 'unix/dltest/pkga.c')
-rw-r--r--unix/dltest/pkga.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/unix/dltest/pkga.c b/unix/dltest/pkga.c
index 5bf3c1e..b2267a7 100644
--- a/unix/dltest/pkga.c
+++ b/unix/dltest/pkga.c
@@ -50,6 +50,7 @@ Pkga_EqObjCmd(
int result;
const char *str1, *str2;
int len1, len2;
+ (void)dummy;
if (objc != 3) {
Tcl_WrongNumArgs(interp, 1, objv, "string1 string2");
@@ -91,6 +92,8 @@ Pkga_QuoteObjCmd(
int objc, /* Number of arguments. */
Tcl_Obj *const objv[]) /* Argument strings. */
{
+ (void)dummy;
+
if (objc != 2) {
Tcl_WrongNumArgs(interp, 1, objv, "value");
return TCL_ERROR;