1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-06-30 19:12:48 -05:00

Fix various fiddly little warnings.

[originally from svn r1298]
This commit is contained in:
Simon Tatham
2001-09-25 19:59:14 +00:00
parent d84c7e05ba
commit 36e6d63b66
6 changed files with 38 additions and 38 deletions

View File

@ -19,7 +19,6 @@
static void sha_mpint(SHA_State * s, Bignum b)
{
unsigned char *p;
unsigned char lenbuf[4];
int len;
len = (bignum_bitcount(b) + 8) / 8;
@ -34,7 +33,6 @@ static void sha_mpint(SHA_State * s, Bignum b)
static void sha512_mpint(SHA512_State * s, Bignum b)
{
unsigned char *p;
unsigned char lenbuf[4];
int len;
len = (bignum_bitcount(b) + 8) / 8;