1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-25 01:02:24 +00:00

Fix a typo; thanks to Al Sutton

[originally from svn r667]
This commit is contained in:
Simon Tatham 2000-10-04 10:02:25 +00:00
parent 01ca2d8077
commit e424247802

2
scp.c
View File

@ -94,7 +94,7 @@ void tell_char(FILE *stream, char c)
else
{
unsigned int msg_id = WM_STD_OUT_CHAR;
if (stream = stderr) msg_id = WM_STD_ERR_CHAR;
if (stream == stderr) msg_id = WM_STD_ERR_CHAR;
send_msg( (HWND)atoi(gui_hwnd), msg_id, (WPARAM)c );
}
}