diff options
Diffstat (limited to 'libtommath/bn_mp_copy.c')
-rw-r--r-- | libtommath/bn_mp_copy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libtommath/bn_mp_copy.c b/libtommath/bn_mp_copy.c index 0de7565..ffbc0d4 100644 --- a/libtommath/bn_mp_copy.c +++ b/libtommath/bn_mp_copy.c @@ -17,7 +17,7 @@ /* copy, b = a */ int -mp_copy (mp_int * a, mp_int * b) +mp_copy (const mp_int * a, mp_int * b) { int res, n; |