summaryrefslogtreecommitdiffstats
path: root/libtommath/bn_mp_mod_d.c
diff options
context:
space:
mode:
Diffstat (limited to 'libtommath/bn_mp_mod_d.c')
-rw-r--r--libtommath/bn_mp_mod_d.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libtommath/bn_mp_mod_d.c b/libtommath/bn_mp_mod_d.c
index 6afe4f1..5217aa4 100644
--- a/libtommath/bn_mp_mod_d.c
+++ b/libtommath/bn_mp_mod_d.c
@@ -16,7 +16,7 @@
*/
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);
}