mirror of
https://github.com/neovim/neovim.git
synced 2025-09-23 19:48:32 +00:00
Remove long_u: do_outofmem_msg().
Remove long_u occurrences due to do_outofmem_msg() function. Refactor size parameter from long_u into size_t.
This commit is contained in:
@@ -6288,7 +6288,7 @@ retry:
|
||||
|| outofmem) {
|
||||
if (ScreenLines != NULL || !done_outofmem_msg) {
|
||||
/* guess the size */
|
||||
do_outofmem_msg((long_u)((Rows + 1) * Columns));
|
||||
do_outofmem_msg((Rows + 1) * Columns);
|
||||
|
||||
/* Remember we did this to avoid getting outofmem messages over
|
||||
* and over again. */
|
||||
|
Reference in New Issue
Block a user