diff options
Diffstat (limited to 'libtommath/bn_mp_mod_d.c')
-rw-r--r-- | libtommath/bn_mp_mod_d.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libtommath/bn_mp_mod_d.c b/libtommath/bn_mp_mod_d.c index bf2ccaa..5217aa4 100644 --- a/libtommath/bn_mp_mod_d.c +++ b/libtommath/bn_mp_mod_d.c @@ -16,9 +16,9 @@ */ int -mp_mod_d (mp_int * a, mp_digit b, mp_digit * c) +mp_mod_d(const mp_int *a, mp_digit b, mp_digit *c) { - return mp_div_d(a, b, NULL, c); + return mp_div_d(a, b, NULL, c); } #endif |