aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ui.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/ui.c')
-rw-r--r--src/nvim/ui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ui.c b/src/nvim/ui.c
index 914b04111e..ef0386e395 100644
--- a/src/nvim/ui.c
+++ b/src/nvim/ui.c
@@ -173,7 +173,7 @@ void ui_refresh(void)
return;
}
- width = height = INT_MAX;
+ int width = INT_MAX, height = INT_MAX;
for (size_t i = 0; i < ui_count; i++) {
UI *ui = uis[i];