projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
49e747e
)
VC++ warning.
author
Ulf Möller
<ulf@openssl.org>
Wed, 29 Sep 1999 22:11:06 +0000
(22:11 +0000)
committer
Ulf Möller
<ulf@openssl.org>
Wed, 29 Sep 1999 22:11:06 +0000
(22:11 +0000)
crypto/bn/bn_div.c
patch
|
blob
|
history
diff --git
a/crypto/bn/bn_div.c
b/crypto/bn/bn_div.c
index 6dd5d99ec4a8fac27d17b0db329d315c5d4ad86f..830da87f58e047f7156a0b2aacd2195bb3495480 100644
(file)
--- a/
crypto/bn/bn_div.c
+++ b/
crypto/bn/bn_div.c
@@
-238,7
+238,7
@@
int BN_div(BIGNUM *dv, BIGNUM *rm, const BIGNUM *num, const BIGNUM *divisor,
q=BN_MASK2;
else
#if defined(BN_LLONG) && defined(BN_DIV2W) && !defined(bn_div_words)
- q=(
(((BN_ULLONG)n0)<<BN_BITS2)|n1)/d0
;
+ q=(
BN_ULONG)(((((BN_ULLONG)n0)<<BN_BITS2)|n1)/d0)
;
#else
q=bn_div_words(n0,n1,d0);
#endif