From: simon Date: Thu, 15 Mar 2001 12:14:09 +0000 (+0000) Subject: Fix a trivial compiler warning X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/commitdiff_plain/44fb739e7833530bc8499eb0be103df61735ed2e Fix a trivial compiler warning git-svn-id: svn://svn.tartarus.org/sgt/putty@1002 cda61777-01e9-0310-a592-d414129be87e --- 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);