summaryrefslogtreecommitdiffstats
path: root/crypto/bn/bn_lcl.h
diff options
context:
space:
mode:
authorBen Laurie <ben@openssl.org>2000-08-22 21:23:09 +0000
committerBen Laurie <ben@openssl.org>2000-08-22 21:23:09 +0000
commitc9b51693dc8f9f198281a4f8a976cf5e118313b4 (patch)
tree2efc1857b883af96222b790f25dd45d93e4b775d /crypto/bn/bn_lcl.h
parentcae0ae2e4b9a00c9a67e777cff3ee1b0a23474e9 (diff)
max -> dmax in bn_check_top.
Diffstat (limited to 'crypto/bn/bn_lcl.h')
-rw-r--r--crypto/bn/bn_lcl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bn/bn_lcl.h b/crypto/bn/bn_lcl.h
index 97c35ea595..9c959921b4 100644
--- a/crypto/bn/bn_lcl.h
+++ b/crypto/bn/bn_lcl.h
@@ -228,7 +228,7 @@ extern "C" {
/* This is used for internal error checking and is not normally used */
#ifdef BN_DEBUG
# include <assert.h>
-# define bn_check_top(a) assert ((a)->top >= 0 && (a)->top <= (a)->max);
+# define bn_check_top(a) assert ((a)->top >= 0 && (a)->top <= (a)->dmax);
#else
# define bn_check_top(a)
#endif