1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-05-31 00:40:28 -05:00

Remove a couple of spurious semicolons.

[originally from svn r3112]
This commit is contained in:
Ben Harris 2003-04-12 21:07:25 +00:00
parent 502d5b4e50
commit 6db521f4b9

View File

@ -1,4 +1,4 @@
/* $Id: macterm.c,v 1.73 2003/04/12 21:06:34 ben Exp $ */ /* $Id: macterm.c,v 1.74 2003/04/12 21:07:25 ben Exp $ */
/* /*
* Copyright (c) 1999 Simon Tatham * Copyright (c) 1999 Simon Tatham
* Copyright (c) 1999, 2002 Ben Harris * Copyright (c) 1999, 2002 Ben Harris
@ -193,9 +193,9 @@ static void mac_workoutfontscale(Session *s, int wantwidth,
const char text = 'W'; const char text = 'W';
FontInfo fi; FontInfo fi;
#if TARGET_API_MAC_CARBON #if TARGET_API_MAC_CARBON
CQDProcsPtr gp = GetPortGrafProcs(GetWindowPort(s->window));; CQDProcsPtr gp = GetPortGrafProcs(GetWindowPort(s->window));
#else #else
QDProcsPtr gp = s->window->grafProcs;; QDProcsPtr gp = s->window->grafProcs;
#endif #endif
numer.v = denom.v = 1; /* always */ numer.v = denom.v = 1; /* always */