mirror of
https://github.com/neovim/neovim.git
synced 2025-10-06 09:56:31 +00:00
refactor: use bool
to represent boolean values
This commit is contained in:
@@ -919,7 +919,7 @@ void win_grid_alloc(win_T *wp)
|
||||
wp->w_lines = xcalloc((size_t)rows + 1, sizeof(wline_T));
|
||||
}
|
||||
|
||||
int was_resized = false;
|
||||
bool was_resized = false;
|
||||
if (want_allocation && (!has_allocation
|
||||
|| grid_allocated->rows != total_rows
|
||||
|| grid_allocated->cols != total_cols)) {
|
||||
|
Reference in New Issue
Block a user