Commit 28fd5c60 authored by Bodo Möller's avatar Bodo Möller
Browse files

Constify bn_dump1 implementation so that it matches the prototype

in bn.h
parent cbd48ba6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);