mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-10 18:07:59 +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:
parent
53b61424bc
commit
8978c74c45
@ -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
|
* Copyright (c) 2002 Ben Harris
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
@ -78,7 +78,7 @@ void mac_newsession(void)
|
|||||||
wi = smalloc(sizeof(*wi));
|
wi = smalloc(sizeof(*wi));
|
||||||
memset(wi, 0, sizeof(*wi));
|
memset(wi, 0, sizeof(*wi));
|
||||||
wi->s = s;
|
wi->s = s;
|
||||||
wi->mcs = s->settings_ctrls;
|
wi->mcs = &s->settings_ctrls;
|
||||||
wi->wtype = wSettings;
|
wi->wtype = wSettings;
|
||||||
wi->update = &macctrl_update;
|
wi->update = &macctrl_update;
|
||||||
wi->click = &macctrl_click;
|
wi->click = &macctrl_click;
|
||||||
|
Loading…
Reference in New Issue
Block a user