summaryrefslogtreecommitdiffstats
path: root/generic/tclExecute.c
diff options
context:
space:
mode:
Diffstat (limited to 'generic/tclExecute.c')
-rw-r--r--generic/tclExecute.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclExecute.c b/generic/tclExecute.c
index a2f8ad5..72b9746 100644
--- a/generic/tclExecute.c
+++ b/generic/tclExecute.c
@@ -8689,7 +8689,7 @@ ExecuteExtendedUnaryMathOp(
}
Tcl_TakeBignumFromObj(NULL, valuePtr, &big);
/* ~a = - a - 1 */
- mp_neg(&big, &big);
+ (void)mp_neg(&big, &big);
mp_sub_d(&big, 1, &big);
BIG_RESULT(&big);
case INST_UMINUS:
@@ -8706,7 +8706,7 @@ ExecuteExtendedUnaryMathOp(
default:
Tcl_TakeBignumFromObj(NULL, valuePtr, &big);
}
- mp_neg(&big, &big);
+ (void)mp_neg(&big, &big);
BIG_RESULT(&big);
}