summaryrefslogtreecommitdiffstats
path: root/libtommath
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2019-04-10 20:07:15 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2019-04-10 20:07:15 (GMT)
commit233d558b1e7e820960a3db26cd2aedcf036ead9e (patch)
treeac1fb0335f83b148afa06bff11374788cacd794e /libtommath
parent0dfee54d3f36565ce837667b054210830e067ba8 (diff)
downloadtcl-233d558b1e7e820960a3db26cd2aedcf036ead9e.zip
tcl-233d558b1e7e820960a3db26cd2aedcf036ead9e.tar.gz
tcl-233d558b1e7e820960a3db26cd2aedcf036ead9e.tar.bz2
Eliminate use of int32_t (doesn't work on MSVC++ 6.0)
Diffstat (limited to 'libtommath')
-rw-r--r--libtommath/bn_mp_prime_strong_lucas_selfridge.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libtommath/bn_mp_prime_strong_lucas_selfridge.c b/libtommath/bn_mp_prime_strong_lucas_selfridge.c
index 5a94f8e..d20b4d7 100644
--- a/libtommath/bn_mp_prime_strong_lucas_selfridge.c
+++ b/libtommath/bn_mp_prime_strong_lucas_selfridge.c
@@ -80,7 +80,7 @@ int mp_prime_strong_lucas_selfridge(const mp_int *a, int *result)
/* CZ TODO: choose better variable names! */
mp_int Dz, gcd, Np1, Uz, Vz, U2mz, V2mz, Qmz, Q2mz, Qkdz, T1z, T2z, T3z, T4z, Q2kdz;
/* CZ TODO: Some of them need the full 32 bit, hence the (temporary) exclusion of MP_8BIT */
- int32_t D, Ds, J, sign, P, Q, r, s, u, Nbits;
+ int D, Ds, J, sign, P, Q, r, s, u, Nbits;
int e;
int isset, oddness;