Remove a couple of unused variables.
authorjacob <jacob@cda61777-01e9-0310-a592-d414129be87e>
Tue, 6 Jan 2009 00:16:35 +0000 (00:16 +0000)
committerjacob <jacob@cda61777-01e9-0310-a592-d414129be87e>
Tue, 6 Jan 2009 00:16:35 +0000 (00:16 +0000)
git-svn-id: svn://svn.tartarus.org/sgt/putty@8393 cda61777-01e9-0310-a592-d414129be87e

windows/window.c
windows/winplink.c

index 216c170..fe16c94 100644 (file)
@@ -4920,8 +4920,6 @@ static DWORD WINAPI clipboard_read_threadfunc(void *param)
 
 static int process_clipdata(HGLOBAL clipdata, int unicode)
 {
-    static wchar_t *converted = 0;
-
     sfree(clipboard_contents);
     clipboard_contents = NULL;
     clipboard_length = 0;
index 60232ff..5f70731 100644 (file)
@@ -305,7 +305,6 @@ int main(int argc, char **argv)
         * Override the default protocol if PLINK_PROTOCOL is set.
         */
        char *p = getenv("PLINK_PROTOCOL");
-       int i;
        if (p) {
            const Backend *b = backend_from_name(p);
            if (b) {