Add a comment.
authorBodo Möller <bodo@openssl.org>
Sun, 27 Feb 2000 11:48:32 +0000 (11:48 +0000)
committerBodo Möller <bodo@openssl.org>
Sun, 27 Feb 2000 11:48:32 +0000 (11:48 +0000)
crypto/bn/bn_print.c

index 2db550d47b93bcf7bf022ef978eed441a0281155..782a96e7e0a69a2f6f5f84aecf0e2673f373fd07 100644 (file)
@@ -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