max -> dmax in bn_check_top.

This commit is contained in:
Ben Laurie 2000-08-22 21:23:09 +00:00
parent cae0ae2e4b
commit c9b51693dc

View File

@ -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