X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/putty/blobdiff_plain/8768ce315f36b41e4645dfa099bb9c5a60b0d964..83d435491be43d9ff46608b7a79a02d1296fbd08:/mac/macterm.c diff --git a/mac/macterm.c b/mac/macterm.c index 185c7eb8..19ba7fa5 100644 --- a/mac/macterm.c +++ b/mac/macterm.c @@ -1,4 +1,4 @@ -/* $Id: macterm.c,v 1.23 2002/12/13 00:02:48 ben Exp $ */ +/* $Id: macterm.c,v 1.25 2002/12/28 22:25:31 ben Exp $ */ /* * Copyright (c) 1999 Simon Tatham * Copyright (c) 1999, 2002 Ben Harris @@ -119,7 +119,7 @@ static void inbuf_putstr(Session *s, const char *c) { static void display_resource(Session *s, unsigned long type, short id) { Handle h; - int len, i; + int len; char *t; h = GetResource(type, id); @@ -140,7 +140,6 @@ void mac_newsession(void) { Session *s; UInt32 starttime; char msg[128]; - OSErr err; /* This should obviously be initialised by other means */ s = smalloc(sizeof(*s)); @@ -192,7 +191,6 @@ static void mac_initfont(Session *s) { Str255 macfont; FontInfo fi; TextEncoding enc; - OSStatus err; SetPort(s->window); macfont[0] = sprintf((char *)&macfont[1], "%s", s->cfg.font); @@ -270,7 +268,6 @@ static void mac_adjustsize(Session *s, int newrows, int newcols) { } static void mac_initpalette(Session *s) { - int i; if (!HAVE_COLOR_QD()) return;