From 981cdfab86d0558b1f56f73bb81a195cec55f02d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bodo=20M=C3=B6ller?= Date: Sun, 27 Feb 2000 11:48:32 +0000 Subject: [PATCH] Add a comment. --- crypto/bn/bn_print.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/bn/bn_print.c b/crypto/bn/bn_print.c index 2db550d47b..782a96e7e0 100644 --- a/crypto/bn/bn_print.c +++ b/crypto/bn/bn_print.c @@ -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 -- 2.25.1