quiet a warning that appeared today

src/cmd.c(2867) : warning C4701: potentially uninitialized local variable 'win' used
This commit is contained in:
nhmall
2022-08-05 10:31:54 -04:00
parent 07184c9640
commit 958a8aa297
+1 -1
View File
@@ -2846,7 +2846,7 @@ count_bind_keys(void)
void void
get_changed_key_binds(strbuf_t *sbuf) get_changed_key_binds(strbuf_t *sbuf)
{ {
winid win; winid win = WIN_ERR;
int i; int i;
char buf[BUFSZ]; char buf[BUFSZ];
char buf2[QBUFSZ]; char buf2[QBUFSZ];