Fix warning.

This commit is contained in:
Dr. Stephen Henson 2005-12-04 21:34:51 +00:00
parent ad4a89f070
commit 0632284f79

View file

@ -186,7 +186,7 @@ int a2d_ASN1_OBJECT(unsigned char *out, int olen, const char *buf, int num)
goto err;
}
while(blsize--)
tmp[i++] = BN_div_word(bl, 0x80L);
tmp[i++] = (unsigned char)BN_div_word(bl, 0x80L);
}
else
{