summaryrefslogtreecommitdiffstats
path: root/libtommath/bn_mp_mul.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2017-09-11 13:21:44 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2017-09-11 13:21:44 (GMT)
commit6cda0425360759bb7fcb024682887c683b0317be (patch)
tree1e5162a6233fccb17b9247fcf80060a752271794 /libtommath/bn_mp_mul.c
parente99f276ddbde6b3937ae618f021080844d6a5076 (diff)
parent8d171426707cfedf851bf4e1626a1192997097ef (diff)
downloadtcl-novem_more_memory_API.zip
tcl-novem_more_memory_API.tar.gz
tcl-novem_more_memory_API.tar.bz2
Diffstat (limited to 'libtommath/bn_mp_mul.c')
-rw-r--r--libtommath/bn_mp_mul.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libtommath/bn_mp_mul.c b/libtommath/bn_mp_mul.c
index cc3b9c8..b8b85c8 100644
--- a/libtommath/bn_mp_mul.c
+++ b/libtommath/bn_mp_mul.c
@@ -16,7 +16,7 @@
*/
/* high level multiplication (handles sign) */
-int mp_mul (mp_int * a, mp_int * b, mp_int * c)
+int mp_mul (const mp_int * a, const mp_int * b, mp_int * c)
{
int res, neg;
neg = (a->sign == b->sign) ? MP_ZPOS : MP_NEG;