Don't use motion flag uninitialized.

pull/1986/head
nicm 2019-11-25 22:38:36 +00:00
parent 87a11a9214
commit 58f870ef6e
1 changed files with 1 additions and 1 deletions

View File

@ -1978,7 +1978,7 @@ window_copy_command(struct window_mode_entry *wme, struct client *c,
enum window_copy_cmd_action action;
const char *command;
u_int i;
int ismotion, keys;
int ismotion = 0, keys;
if (args->argc == 0)
return;