]> asedeno.scripts.mit.edu Git - PuTTY.git/commitdiff
Remove a couple of unused variables.
authorJacob Nevins <jacobn@chiark.greenend.org.uk>
Tue, 6 Jan 2009 00:16:35 +0000 (00:16 +0000)
committerJacob Nevins <jacobn@chiark.greenend.org.uk>
Tue, 6 Jan 2009 00:16:35 +0000 (00:16 +0000)
[originally from svn r8393]

windows/window.c
windows/winplink.c

index 216c17049decf342e6c060b45c0f3ad23d0db798..fe16c949809d53ccd1b7a471bb9941ec900790cf 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 60232ffe7f85ad88d182fad78b4b0e739a34400b..5f7073167d7ea90c309ab6ba7c4620946c0e3e12 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) {