Constify bn_dump1 implementation so that it matches the prototype

in bn.h
This commit is contained in:
Bodo Möller 2000-11-17 08:36:10 +00:00
parent cbd48ba626
commit 28fd5c60de

View File

@ -321,7 +321,7 @@ end:
#endif #endif
#ifdef BN_DEBUG #ifdef BN_DEBUG
void bn_dump1(FILE *o, const char *a, BN_ULONG *b,int n) void bn_dump1(FILE *o, const char *a, const BN_ULONG *b,int n)
{ {
int i; int i;
fprintf(o, "%s=", a); fprintf(o, "%s=", a);