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

gtkwin: solved unused variable error

solved unused variable error when KEY_EVENT_DIAGNOSTICS defined but
DEBUG not defined

although we intend to always define DEBUG when KEY_EVENT_DIAGNOSTICS
is going to be defined.
This commit is contained in:
Sean Ho 2021-01-11 10:55:56 +08:00 committed by Simon Tatham
parent 476e09832f
commit 7d086184f8

View File

@ -1218,7 +1218,7 @@ gint key_event(GtkWidget *widget, GdkEventKey *event, gpointer data)
if (digit < 0)
inst->alt_keycode = -2; /* it's invalid */
else {
#ifdef KEY_EVENT_DIAGNOSTICS
#if defined(DEBUG) && defined(KEY_EVENT_DIAGNOSTICS)
int old_keycode = inst->alt_keycode;
#endif
if (inst->alt_keycode == -1)