From: Bodo Möller Date: Sun, 27 Feb 2000 11:48:32 +0000 (+0000) Subject: Add a comment. X-Git-Tag: OpenSSL_0_9_5a-beta1~180 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=981cdfab86d0558b1f56f73bb81a195cec55f02d;p=openssl Add a comment. --- 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