From a405770ec53c0356222dc51faa8e303fa772fa7c Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Thu, 15 Mar 2001 12:14:09 +0000 Subject: [PATCH] Fix a trivial compiler warning [originally from svn r1002] --- puttygen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/puttygen.c b/puttygen.c index 44fc98fa..19245f80 100644 --- a/puttygen.c +++ b/puttygen.c @@ -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);