1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-10 09:58:01 +00:00

Insert a missing ampersand that meant that the last version didn't even

compile.

[originally from svn r2954]
This commit is contained in:
Ben Harris 2003-03-17 22:38:18 +00:00
parent 53b61424bc
commit 8978c74c45

View File

@ -1,4 +1,4 @@
/* $Id: macdlg.c,v 1.13 2003/03/17 21:40:37 ben Exp $ */
/* $Id: macdlg.c,v 1.14 2003/03/17 22:38:18 ben Exp $ */
/*
* Copyright (c) 2002 Ben Harris
* All rights reserved.
@ -78,7 +78,7 @@ void mac_newsession(void)
wi = smalloc(sizeof(*wi));
memset(wi, 0, sizeof(*wi));
wi->s = s;
wi->mcs = s->settings_ctrls;
wi->mcs = &s->settings_ctrls;
wi->wtype = wSettings;
wi->update = &macctrl_update;
wi->click = &macctrl_click;