mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-04 21:12:47 -05:00
Fix a few compiler warnings from MinGW.
A few variables that gcc couldn't tell I'd initialised on all the important paths, a variable that didn't really need to be there anyway, and yet another use of GET_WINDOWS_FUNCTION_NO_TYPECHECK.
This commit is contained in:
@ -1016,7 +1016,7 @@ void update_specials_menu(void *frontend)
|
||||
|
||||
static void update_mouse_pointer(void)
|
||||
{
|
||||
LPTSTR curstype;
|
||||
LPTSTR curstype = NULL;
|
||||
int force_visible = FALSE;
|
||||
static int forced_visible = FALSE;
|
||||
switch (busy_status) {
|
||||
|
Reference in New Issue
Block a user