Constify bn_dump1 implementation so that it matches the prototype
in bn.h
This commit is contained in:
@@ -321,7 +321,7 @@ end:
|
||||
#endif
|
||||
|
||||
#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;
|
||||
fprintf(o, "%s=", a);
|
||||
|
Reference in New Issue
Block a user