summaryrefslogtreecommitdiffstats
path: root/crypto/bn
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2000-02-27 12:48:32 +0100
committerBodo Möller <bodo@openssl.org>2000-02-27 12:48:32 +0100
commit981cdfab86d0558b1f56f73bb81a195cec55f02d (patch)
tree1e0a0cc9b144ee67c992449d78874d9219c48dec /crypto/bn
parentFor lack of a better name, this is now called 0.9.5beta3-dev until the (diff)
downloadopenssl-981cdfab86d0558b1f56f73bb81a195cec55f02d.tar.xz
openssl-981cdfab86d0558b1f56f73bb81a195cec55f02d.zip
Add a comment.
Diffstat (limited to 'crypto/bn')
-rw-r--r--crypto/bn/bn_print.c2
1 files changed, 1 insertions, 1 deletions
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