Commit 981cdfab authored by Bodo Möller's avatar Bodo Möller
Browse files

Add a comment.

parent 13bf48c7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -326,7 +326,7 @@ void bn_dump1(FILE *o, const char *a, BN_ULONG *b,int n)
	int i;
	fprintf(o, "%s=", a);
	for (i=n-1;i>=0;i--)
		fprintf(o, "%08lX", b[i]);
		fprintf(o, "%08lX", b[i]); /* assumes 32-bit BN_ULONG */
	fprintf(o, "\n");
	}
#endif