1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-10 01:48:00 +00:00

Fix a trivial compiler warning

[originally from svn r1002]
This commit is contained in:
Simon Tatham 2001-03-15 12:14:09 +00:00
parent 4b5a97fbee
commit a405770ec5

View File

@ -325,7 +325,7 @@ static void setupbigedit1(HWND hwnd, int id, struct RSAKey *key) {
static void setupbigedit2(HWND hwnd, int id, struct ssh2_userkey *key) {
unsigned char *pub_blob;
char *buffer, *p;
int pub_len, buflen;
int pub_len;
int i;
pub_blob = key->alg->public_blob(key->data, &pub_len);